Added IPv4 ICMP support to Windows.
All checks were successful
Build & Release / Windows-AMD64-Build (push) Successful in 5m1s
Build & Release / Linux-AMD64-Build (push) Successful in 14m41s
Build & Release / Linux-AARCH64-Build (push) Successful in 43m40s

This commit is contained in:
2025-03-26 11:45:54 -07:00
parent c19c0bc80b
commit d41f71f17d
3 changed files with 215 additions and 6 deletions

View File

@@ -1,7 +1,9 @@
#pragma once
#include "ehs/system/OS.h"
#ifdef EHS_OS_WINDOWS
#include "BaseICMP.h"
#include "ICMP_W32.h"
#else
#include "ICMP_LNX.h"
#include "ICMP_LNX.h"
#endif