]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/oleauto.h (V_BOOL): Define in terms of boolVal,
authorDanny Smith <dannysmith@users.sourceforge.net>
Tue, 23 Jul 2002 02:09:27 +0000 (02:09 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Tue, 23 Jul 2002 02:09:27 +0000 (02:09 +0000)
not bool, for C as well as C++.

winsup/w32api/ChangeLog
winsup/w32api/include/oleauto.h

index 72af7a22ec15e4ff8ba1d660368c32daf35d43bd..fbcd75f210ce6f2b2699759e721ff80147350694 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
+
+       * include/oleauto.h (V_BOOL): Define in terms of boolVal,
+       not bool, for C as well as C++.
+
 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * include/shlwapi.h: New file.
index ab519ab2807f5b56341afd5996fe48ee09ff6bd3..fa4d7ee554a70ae499038af1d154410d4a99d234 100644 (file)
 #else
 #define V_UNION(X,Y) ((X)->Y)
 #endif
-#ifdef __cplusplus
 #define V_BOOL(X) V_UNION(X,boolVal)
-#else
-#define V_BOOL(X) V_UNION(X,bool)
-#endif
 #define V_VT(X) ((X)->vt)
 #define V_ISBYREF(X) (V_VT(X)&VT_BYREF)
 #define V_ISARRAY(X) (V_VT(X)&VT_ARRAY)
This page took 0.037078 seconds and 5 git commands to generate.