diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-06-24 04:51:34 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-06-24 04:51:34 +0000 |
commit | f8f2ad211f71d20ab2a7078defa4429c0a7b28e3 (patch) | |
tree | 0cdeed28d5bb26d4be6f9baa2552bf6fb219b01b /winsup/w32api/include/objidl.h | |
parent | e106f92bfcb81bfd8ae6595e4959d582bb7b9757 (diff) | |
download | cygnal-f8f2ad211f71d20ab2a7078defa4429c0a7b28e3.tar.gz cygnal-f8f2ad211f71d20ab2a7078defa4429c0a7b28e3.tar.bz2 cygnal-f8f2ad211f71d20ab2a7078defa4429c0a7b28e3.zip |
* include/objidl.h (struct tagPROPVARIANT): Kill obsolete
union member _VARIANT_BOOL bool.
Diffstat (limited to 'winsup/w32api/include/objidl.h')
-rw-r--r-- | winsup/w32api/include/objidl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/w32api/include/objidl.h b/winsup/w32api/include/objidl.h index dfabbee18..20f5cd8cc 100644 --- a/winsup/w32api/include/objidl.h +++ b/winsup/w32api/include/objidl.h @@ -305,7 +305,9 @@ typedef struct tagPROPVARIANT { short iVal; USHORT uiVal; 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; #endif long lVal; |