Share via


CEVALUNION

This union contains a value for a property.

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

Members

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

Requirements

OS Versions: Windows CE 1.01 and later.
Header: Windbase.h.

See Also

CEBLOB | FILETIME

 Last updated on Friday, April 09, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.