2.2.2.1 WINSINTF_ADD_T

The WINSINTF_ADD_T structure defines the IP address information of a WINS server. It is used by several data structures including WINSINTF_RECORD_ACTION_T and WINSINTF_ADD_VERS_MAP_T and by RPC methods like R_WinsTrigger and R_WinsGetDbRecs.

 typedef struct _WINSINTF_ADD_T {
   BYTE Type;
   DWORD Len;
   DWORD IPAdd;
 } WINSINTF_ADD_T,
  *PWINSINTF_ADD_T;

Type: Specifies the address type. This field MUST be set to zero.

Len: Indicates the length, in bytes, of the IP address that is stored in IPAdd.

IPAdd: Stores an IP address in little-endian format. For example, the IP address 172.22.32.42 is stored as 0xAC16202A.