! Fix build of tracert

# Conflicts:
#	sdk/include/psdk/ipexport.h
This commit is contained in:
Timo Kreuzer 2018-01-04 18:29:11 +01:00
parent 48382d1448
commit 5985fe613b

View file

@ -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