OSDN Git Service

* include/commdlg.h (OPENFILENAMEW): Add members for
authordannysmith <dannysmith>
Sat, 12 Nov 2005 09:49:00 +0000 (09:49 +0000)
committerdannysmith <dannysmith>
Sat, 12 Nov 2005 09:49:00 +0000 (09:49 +0000)
_WIN32_WINNT >= 0x0500.
(OPENFILENAMEA): Modify whitespace. Ansify comment.

winsup/w32api/ChangeLog
winsup/w32api/include/commdlg.h

index 44d2a43..24cd65e 100644 (file)
@@ -1,5 +1,12 @@
 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
 
+       * include/commdlg.h (OPENFILENAMEW): Add members for
+       _WIN32_WINNT >= 0x0500.
+       Thanks to Ricardo Dalcorsso Fodra.
+       (OPENFILENAMEA): Modify whitespace. Ansify comment.
+
+2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
+
        * include/wingdi.h (GetICMProfileA): Correct prototype.
        (GetICMProfileW): Likewise.
        Thanks to: Paul J Lucas
index 5798f31..0726cd2 100644 (file)
@@ -337,10 +337,10 @@ typedef struct tagOFNA {
        LPOFNHOOKPROC lpfnHook;
        LPCSTR lpTemplateName;
 #if (_WIN32_WINNT >= 0x0500)
-    void * pvReserved;
-    DWORD dwReserved;
-    DWORD FlagsEx;
-#endif // (_WIN32_WINNT >= 0x0500)
+       void * pvReserved;
+       DWORD dwReserved;
+       DWORD FlagsEx;
+#endif /* (_WIN32_WINNT >= 0x0500) */
 } OPENFILENAMEA,*LPOPENFILENAMEA;
 typedef struct tagOFNW {
        DWORD lStructSize;
@@ -363,6 +363,11 @@ typedef struct tagOFNW {
        DWORD lCustData;
        LPOFNHOOKPROC lpfnHook;
        LPCWSTR lpTemplateName;
+#if (_WIN32_WINNT >= 0x0500)
+       void * pvReserved;
+       DWORD dwReserved;
+       DWORD FlagsEx;
+#endif /* (_WIN32_WINNT >= 0x0500) */
 } OPENFILENAMEW,*LPOPENFILENAMEW;
 typedef struct _OFNOTIFYA {
        NMHDR hdr;