From: <ped...@us...> - 2006-11-12 22:04:56
|
Revision: 802 http://svn.sourceforge.net/cegcc/?rev=802&view=rev Author: pedroalves Date: 2006-11-12 14:04:27 -0800 (Sun, 12 Nov 2006) Log Message: ----------- This is how I should have committed before. SHGetSpecialFolderPath is was already defined in shlobj.h, but in WinCE it should be defined in shellapi.h. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/shlobj.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-12 21:37:58 UTC (rev 801) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-12 22:04:27 UTC (rev 802) @@ -5,8 +5,9 @@ 2006-11-12 Pedro Alves <ped...@po...> - * include/shellapi.h (SHGetSpecialFolderPath, - SHGetShortcutTarget, SHCreateShortcut): Declare. + * include/shlobj.h (SHGetSpecialFolderPath): In Windows CE it is declared ... + * include/shellapi.h (SHGetSpecialFolderPath): ... here. + (SHGetShortcutTarget, SHCreateShortcut): Declare. 2006-11-12 Pedro Alves <ped...@po...> Modified: trunk/cegcc/src/w32api/include/shlobj.h =================================================================== --- trunk/cegcc/src/w32api/include/shlobj.h 2006-11-12 21:37:58 UTC (rev 801) +++ trunk/cegcc/src/w32api/include/shlobj.h 2006-11-12 22:04:27 UTC (rev 802) @@ -1431,10 +1431,12 @@ #endif HRESULT WINAPI SHGetSpecialFolderLocation(HWND,int,LPITEMIDLIST*); HRESULT WINAPI SHLoadInProc(REFCLSID); +#ifndef _WIN32_WCE #if (_WIN32_IE >= 0x0400) BOOL WINAPI SHGetSpecialFolderPathA(HWND,LPSTR,int,BOOL); BOOL WINAPI SHGetSpecialFolderPathW(HWND,LPWSTR,int,BOOL); #endif +#endif /* SHGetFolderPath in shfolder.dll on W9x, NT4, also in shell32.dll on W2K */ HRESULT WINAPI SHGetFolderPathA(HWND,int,HANDLE,DWORD,LPSTR); HRESULT WINAPI SHGetFolderPathW(HWND,int,HANDLE,DWORD,LPWSTR); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |