2006-02-04 Ron Lee <ronl@users.sourceforge.net>

* include/winnls.h: Remove stray end ';' from preprocessor defines.
This commit is contained in:
Danny Smith 2006-02-06 22:05:09 +00:00
parent d38cf862ce
commit 3d1172c133
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-02-06 Danny Smith <dannysmith@users.sourceforge.net>
* include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
2006-02-06 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,

View file

@ -1399,7 +1399,7 @@ DECLARE_INTERFACE_(IDropTargetHelper, IUnknown)
};
#endif /* _WIN32_IE >= 0x0500 */
#ifdef _WIN32_WINNT >= 0x0500
#if (_WIN32_WINNT >= 0x0500)
BOOL WINAPI PathResolve(LPWSTR, LPCWSTR*, UINT);
#define PRF_VERIFYEXISTS 0x0001
#define PRF_TRYPROGRAMEXTENSIONS (0x0002 | PRF_VERIFYEXISTS)