https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c32993c67249513b17673d...
commit c32993c67249513b17673d44e4c6bcfb7b70e9b1 Author: David Quintana gigaherz@gmail.com AuthorDate: Thu Jan 4 19:15:06 2018 +0100
[PSDK] Change #if to #ifdef, to be more consistent with the majority of our codebase. --- sdk/include/psdk/ipexport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdk/include/psdk/ipexport.h b/sdk/include/psdk/ipexport.h index 906bbb0edf..608952eec8 100644 --- a/sdk/include/psdk/ipexport.h +++ b/sdk/include/psdk/ipexport.h @@ -66,7 +66,7 @@ typedef struct ip_option_information IP_OPTION_INFORMATION, *PIP_OPTION_INFORMAT
typedef struct icmp_echo_reply ICMP_ECHO_REPLY, *PICMP_ECHO_REPLY;
-#if _WIN64 +#ifdef _WIN64 struct icmp_echo_reply32 { IPAddr Address;