mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
! Fix build of tracert
# Conflicts: # sdk/include/psdk/ipexport.h
This commit is contained in:
@@ -37,6 +37,19 @@ struct ip_option_information
|
||||
unsigned char* OptionsData;
|
||||
};
|
||||
|
||||
#if defined(_WIN64)
|
||||
|
||||
struct ip_option_information32
|
||||
{
|
||||
unsigned char Ttl;
|
||||
unsigned char Tos;
|
||||
unsigned char Flags;
|
||||
unsigned char OptionsSize;
|
||||
unsigned char* POINTER_32 OptionsData;
|
||||
};
|
||||
|
||||
#endif // _WIN64
|
||||
|
||||
#define IP_FLAG_DF 0x2
|
||||
|
||||
#define IP_OPT_EOL 0
|
||||
@@ -75,9 +88,11 @@ struct icmp_echo_reply32
|
||||
unsigned short DataSize;
|
||||
unsigned short Reserved;
|
||||
void* POINTER_32 Data;
|
||||
struct ip_option_information Options;
|
||||
struct ip_option_information32 Options;
|
||||
};
|
||||
|
||||
typedef struct ip_option_information32 IP_OPTION_INFORMATION32, *PIP_OPTION_INFORMATION32;
|
||||
|
||||
typedef struct icmp_echo_reply32 ICMP_ECHO_REPLY32, *PICMP_ECHO_REPLY32;
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user