Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygeninaddr.h
Go to the documentation of this file.
00001 #pragma once 00002 00003 #ifndef s_addr 00004 00005 typedef struct in_addr { 00006 union { 00007 struct {UCHAR s_b1,s_b2,s_b3,s_b4;} S_un_b; 00008 struct {USHORT s_w1,s_w2;} S_un_w; 00009 ULONG S_addr; 00010 } S_un; 00011 } IN_ADDR, *PIN_ADDR, FAR *LPIN_ADDR; 00012 00013 #define s_addr S_un.S_addr 00014 #define s_host S_un.S_un_b.s_b2 00015 #define s_net S_un.S_un_b.s_b1 00016 #define s_imp S_un.S_un_w.s_w2 00017 #define s_impno S_un.S_un_b.s_b4 00018 #define s_lh S_un.S_un_b.s_b3 00019 00020 #endif /* s_addr */ 00021 Generated on Sat May 26 2012 04:30:16 for ReactOS by
1.7.6.1
|