Share via


CEVALUNION (Windows Embedded CE 6.0)

1/6/2010

This union contains a value for a property.

Syntax

typedef union _CEVALUNION {
  short iVal;
  USHORT uiVal;
  long lVal;
  ULONG ulVal;
  FILETIME filetime;
  LPWSTR lpwstr;
  CEBLOB blob;
  BOOL boolVal;
  double dblVal;
} CEVALUNION;

Members

  • iVal
    Specifies an integer.
  • uiVal
    Specifies an unsigned integer.
  • lVal
    Specifies a long integer.
  • ulVal
    Specifies an unsigned long integer.
  • filetime
    Specifies a FILETIME structure.
  • lpwstr
    Pointer to a null-terminated string.
  • blob
    Specifies a CEBLOB structure.
  • boolVal
    Specifies a 16-bit unsigned integer.
  • dblVal
    Specifies a 64-bit signed double value.

Requirements

Header rapitypes.h
Windows Embedded CE Windows CE 3.0 and later

See Also

Reference

CEBLOB

Concepts

RAPI Unions