|
From: <ped...@us...> - 2008-10-05 14:53:11
|
Revision: 1198
http://cegcc.svn.sourceforge.net/cegcc/?rev=1198&view=rev
Author: pedroalves
Date: 2008-10-05 14:52:09 +0000 (Sun, 05 Oct 2008)
Log Message:
-----------
2008-10-05 Pedro Alves <ped...@us...>
* include/shellapi.h (SHCreateShortcut): Change return type to
DWORD.
(SHCreateShortcutEx): 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 2008-10-05 14:45:42 UTC (rev 1197)
+++ trunk/cegcc/src/w32api/ChangeLog.ce 2008-10-05 14:52:09 UTC (rev 1198)
@@ -1,3 +1,9 @@
+2008-10-05 Pedro Alves <ped...@us...>
+
+ * include/shellapi.h (SHCreateShortcut): Change return type to
+ DWORD.
+ (SHCreateShortcutEx): Declare.
+
2008-09-25 Pedro Alves <ped...@us...>
* libce/Makefile.in (inst_includedir, inst_libdir) [!cegcc]:
Modified: trunk/cegcc/src/w32api/include/shellapi.h
===================================================================
--- trunk/cegcc/src/w32api/include/shellapi.h 2008-10-05 14:45:42 UTC (rev 1197)
+++ trunk/cegcc/src/w32api/include/shellapi.h 2008-10-05 14:52:09 UTC (rev 1198)
@@ -325,7 +325,10 @@
#ifdef _WIN32_WCE
BOOL WINAPI SHGetShortcutTarget(LPCTSTR,LPTSTR,int);
-BOOL WINAPI SHCreateShortcut(LPTSTR,LPTSTR);
+DWORD WINAPI SHCreateShortcut(LPTSTR,LPTSTR);
+#if (_WIN32_WCE >= 0x420)
+DWORD WINAPI SHCreateShortcutEx(LPTSTR,LPTSTR,LPTSTR,LPDWORD);
+#endif
HBITMAP WINAPI SHLoadDIBitmap(LPCTSTR);
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|