Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This union holds the raw data for an SDP element.

Syntax

typedef union NodeDataUnion {
  DP_LARGE_INTEGER_16 
int128;
  SDP_ULARGE_INTEGER_16 
uint128;
  GUID 
uuid128;
  ULONG 
uuid32;
  USHORT 
uuid16;
  LONGLONG 
int64;
  ULONGLONG 
uint64;
  LONG 
int32;
  ULONG 
uint32;
  SHORT 
int16;
  USHORT 
uint16;
  CHAR 
int8;
  UCHAR 
uint8;
  UCHAR 
booleanVal;
  SdpString 
str;
  SdpString 
url;
  ISdpNodeContainer* 
container;
} NodeDataUnion;

Members

int128

128-bit integer.

uint128

Unsigned 128-bit integer.

uuid128

UUID represented using 128 bits.

uuid32

UUID represented using 32 bits.

uuid16

UUID represented using 16 bits.

int64

64-bit integer.

uint64

Unsigned 64-bit integer.

int32

32-bit integer.

uint32

Unsigned 32-bit integer.

int16

16-bit integer.

uint16

Unsigned 16-bit integer.

int8

8-bit integer.

uint8

Unsigned 8-bit integer.

booleanVal

Boolean value.

str

String data.

url

URL data.

container

Pointer to an ISdpNodeContainerinterface.

Requirements

Header bthapi.idl
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also