typedef struct _TA_NETBIOS_ADDRESS {
INT TAAddressCount;
typedef struct _Address {
USHORT AddressLength;
USHORT AddressType;
TDI_ADDRESS_NETBIOS Address[1];
} Address [1];
} TA_NETBIOS_ADDRESS, *PTA_NETBIOS_ADDRESS;
TA_NETBIOS_ADDRESS contains a single NetBIOS transport address. TDI defines this structure for convenience in situations requiring a single TDI_ADDRESS_NETBIOS address.
Members
TAAddressCount
Specifies the number of addresses in the array.
AddressLength
Specifies the length (18 bytes) of each address in the array.
AddressType
Specifies TDI_ADDRESS_TYPE_NETBIOS (see TA_ADDRESS).
Address[1]
Specifies a TDI_ADDRESS_NETBIOS structure containing the address.
See Also