[USB-BRINGUP-TRUNK]

- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
This commit is contained in:
Cameron Gutman 2012-01-20 20:58:46 +00:00
parent f65034e760
commit c2d0d784c7
20461 changed files with 0 additions and 1213965 deletions

21
include/psdk/inaddr.h Normal file
View file

@ -0,0 +1,21 @@
#pragma once
#ifndef s_addr
typedef struct in_addr {
union {
struct {UCHAR s_b1,s_b2,s_b3,s_b4;} S_un_b;
struct {USHORT s_w1,s_w2;} S_un_w;
ULONG S_addr;
} S_un;
} IN_ADDR, *PIN_ADDR, FAR *LPIN_ADDR;
#define s_addr S_un.S_addr
#define s_host S_un.S_un_b.s_b2
#define s_net S_un.S_un_b.s_b1
#define s_imp S_un.S_un_w.s_w2
#define s_impno S_un.S_un_b.s_b4
#define s_lh S_un.S_un_b.s_b3
#endif /* s_addr */