* include/objidl.h (struct tagPROPVARIANT): Kill obsolete
union member _VARIANT_BOOL bool.
This commit is contained in:
parent
e106f92bfc
commit
f8f2ad211f
|
@ -1,3 +1,8 @@
|
||||||
|
2002-06-24 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/objidl.h (struct tagPROPVARIANT): Kill obsolete
|
||||||
|
union member _VARIANT_BOOL bool.
|
||||||
|
|
||||||
2002-06-24 Danny Smith <dannysmith@users.sourceforge.net>
|
2002-06-24 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
|
* include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
|
||||||
|
|
|
@ -305,7 +305,9 @@ typedef struct tagPROPVARIANT {
|
||||||
short iVal;
|
short iVal;
|
||||||
USHORT uiVal;
|
USHORT uiVal;
|
||||||
VARIANT_BOOL boolVal;
|
VARIANT_BOOL boolVal;
|
||||||
#ifndef __cplusplus
|
#if 0
|
||||||
|
/* bool is a standard type in C++, and a standard macro expanding
|
||||||
|
to the _Bool type in C99 (see stdbool.h) */
|
||||||
_VARIANT_BOOL bool;
|
_VARIANT_BOOL bool;
|
||||||
#endif
|
#endif
|
||||||
long lVal;
|
long lVal;
|
||||||
|
|
Loading…
Reference in New Issue