ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

inaddr.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.