From: <ped...@us...> - 2006-11-12 21:06:20
|
Revision: 800 http://svn.sourceforge.net/cegcc/?rev=800&view=rev Author: pedroalves Date: 2006-11-12 13:05:34 -0800 (Sun, 12 Nov 2006) Log Message: ----------- * include/shellapi.h (SHGetSpecialFolderPath, SHGetShortcutTarget, SHCreateShortcut): Declare. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/shellapi.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-12 20:44:45 UTC (rev 799) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-12 21:05:34 UTC (rev 800) @@ -1,5 +1,10 @@ 2006-11-12 Pedro Alves <ped...@po...> + * include/shellapi.h (SHGetSpecialFolderPath, + SHGetShortcutTarget, SHCreateShortcut): Declare. + +2006-11-12 Pedro Alves <ped...@po...> + * include/winnt.h (GetCurrentFiber, GetFiberData, GetCurrentFiber, GetFiberData, NtCurrentTeb): There is no Fiber support in Windows CE. Hide the functions. Modified: trunk/cegcc/src/w32api/include/shellapi.h =================================================================== --- trunk/cegcc/src/w32api/include/shellapi.h 2006-11-12 20:44:45 UTC (rev 799) +++ trunk/cegcc/src/w32api/include/shellapi.h 2006-11-12 21:05:34 UTC (rev 800) @@ -311,6 +311,15 @@ HRESULT WINAPI SHEmptyRecycleBinA(HWND,LPCSTR,DWORD); HRESULT WINAPI SHEmptyRecycleBinW(HWND,LPCWSTR,DWORD); +#if (_WIN32_WCE >= 0x300) +BOOL WINAPI SHGetSpecialFolderPath(HWND,LPWSTR,int,BOOL); +#endif + +#ifdef _WIN32_WCE +BOOL WINAPI SHGetShortcutTarget(LPCTSTR,LPTSTR,int); +BOOL WINAPI SHCreateShortcut(LPTSTR,LPTSTR); +#endif + #ifdef UNICODE typedef NOTIFYICONDATAW NOTIFYICONDATA,*PNOTIFYICONDATA; typedef SHELLEXECUTEINFOW SHELLEXECUTEINFO,*LPSHELLEXECUTEINFO; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |