* include/commdlg.h (OPENFILENAMEW): Add members for

_WIN32_WINNT >= 0x0500.
	(OPENFILENAMEA): Modify whitespace. Ansify comment.
This commit is contained in:
Danny Smith 2005-11-12 09:49:00 +00:00
parent a9f25ffad8
commit 5f27904928
2 changed files with 16 additions and 4 deletions

View File

@ -1,3 +1,10 @@
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.

View 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;