mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:45:44 +00:00
! Fix build of tracert
# Conflicts: # sdk/include/psdk/ipexport.h
This commit is contained in:
parent
48382d1448
commit
5985fe613b
1 changed files with 16 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue