mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[PSDK] Add ICMP_ECHO_REPLY32 needed by 64-bit code. Fixes x64 build of tracert.
This commit is contained in:
parent
522601d050
commit
c8b93430d4
1 changed files with 15 additions and 0 deletions
|
@ -66,6 +66,21 @@ typedef struct ip_option_information IP_OPTION_INFORMATION, *PIP_OPTION_INFORMAT
|
|||
|
||||
typedef struct icmp_echo_reply ICMP_ECHO_REPLY, *PICMP_ECHO_REPLY;
|
||||
|
||||
#if _WIN64
|
||||
struct icmp_echo_reply32
|
||||
{
|
||||
IPAddr Address;
|
||||
ULONG Status;
|
||||
ULONG RoundTripTime;
|
||||
unsigned short DataSize;
|
||||
unsigned short Reserved;
|
||||
void* POINTER_32 Data;
|
||||
struct ip_option_information Options;
|
||||
};
|
||||
|
||||
typedef struct icmp_echo_reply32 ICMP_ECHO_REPLY32, *PICMP_ECHO_REPLY32;
|
||||
#endif
|
||||
|
||||
|
||||
#define IP_STATUS_BASE 11000
|
||||
|
||||
|
|
Loading…
Reference in a new issue