Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2003-07-23 02:48:00 +0400
committerDanny Smith <dannysmith@users.sourceforge.net>2003-07-23 02:48:00 +0400
commitb57a74b2100149e9f69b712c075723f1f54bd87c (patch)
tree738ba56e45e2c5ba40640199e2aad1ac28ef86d8
parentf7ef8859031a88b7afbd6623e7104b35fce540fd (diff)
* include/objidl.h (PropVariant): Add CHAR cVal field
to union. (FMTID_SummaryInformation, FMTID_DocSummaryInformation, FMTID_UserDefinedProperties): Declare.
-rw-r--r--winsup/w32api/ChangeLog7
-rw-r--r--winsup/w32api/include/objidl.h6
2 files changed, 13 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index feeed702a..19171c412 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,5 +1,12 @@
2003-07-22 Danny Smith <dannysmith@users.sourceforge.net>
+ * include/objidl.h (PropVariant): Add CHAR cVal field
+ to union.
+ (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
+ FMTID_UserDefinedProperties): Declare.
+
+2003-07-22 Danny Smith <dannysmith@users.sourceforge.net>
+
* include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
2003-07-22 Danny Smith <dannysmith@users.sourceforge.net>
diff --git a/winsup/w32api/include/objidl.h b/winsup/w32api/include/objidl.h
index bf14ce150..f9ec9d52c 100644
--- a/winsup/w32api/include/objidl.h
+++ b/winsup/w32api/include/objidl.h
@@ -301,6 +301,7 @@ typedef struct tagPROPVARIANT {
WORD wReserved2;
WORD wReserved3;
_ANONYMOUS_UNION union {
+ CHAR cVal;
UCHAR bVal;
short iVal;
USHORT uiVal;
@@ -408,6 +409,11 @@ typedef struct tagSOLE_AUTHENTICATION_LIST {
DWORD cAuthInfo;
SOLE_AUTHENTICATION_INFO* aAuthInfo;
} SOLE_AUTHENTICATION_LIST;
+
+EXTERN_C const FMTID FMTID_SummaryInformation;
+EXTERN_C const FMTID FMTID_DocSummaryInformation;
+EXTERN_C const FMTID FMTID_UserDefinedProperties;
+
DECLARE_ENUMERATOR(FORMATETC);
DECLARE_ENUMERATOR(HLITEM);
DECLARE_ENUMERATOR(STATDATA);