CVS: winex/include shlobj.h,1.7,1.8
[email protected] 14 Dec 2007 20:33:02 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/include shlobj.h,1.7,1.8Update of /var/lib/cvsd/cvsroot/winex/include In directory agravaine:/tmp/cvs-serv17014/include Modified Files: shlobj.h Log Message: Prototype for SHGetFolderPath. Index: shlobj.h =================================================================== RCS file: /var/lib/cvsd/cvsroot/winex/include/shlobj.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- shlobj.h 28 Mar 2007 17:12:39 -0000 1.7 +++ shlobj.h 14 Dec 2007 20:33:00 -0000 1.8 @@ -478,7 +478,15 @@ /**************************************************************************** * SHGetSpecialFolderLocation API */ -HRESULT WINAPI SHGetSpecialFolderLocation(HWND, INT, LPITEMIDLIST *); +HRESULT WINAPI SHGetSpecialFolderLocation(HWND hwndOwner, INT nFolder, LPITEMIDLIST *ppidl); +HRESULT WINAPI SHGetFolderLocation(HWND hwndOwner, INT nFolder, HANDLE hToken, DWORD dwReserved, LPITEMIDLIST *ppidl); + +/**************************************************************************** +* SHGetFolderPath API +*/ +HRESULT WINAPI SHGetFolderPathA(HWND hwnd, INT nFolder, HANDLE hToken, DWORD dwFlags, LPSTR pszPath); +HRESULT WINAPI SHGetFolderPathW(HWND hwnd, INT nFolder, HANDLE hToken, DWORD dwFlags, LPWSTR pszPath); +#define SHGetFolderPath WINELIB_NAME_AW(SHGetFolderPath) #define CSIDL_DESKTOP 0x0000 #define CSIDL_INTERNET 0x0001