From: <dan...@us...> - 2008-02-17 17:00:40
|
Revision: 1140 http://cegcc.svn.sourceforge.net/cegcc/?rev=1140&view=rev Author: dannybackx Date: 2008-02-17 09:00:23 -0800 (Sun, 17 Feb 2008) Log Message: ----------- * include/aygshell.h (SHInitExtraControls): Move into the extern "C" construction. * include/aygshell.h (SHDoneButton, WS_NONAVDONEBUTTON, SHDB_SHOW, SHDB_HIDE): Define. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/aygshell.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2008-02-08 22:28:01 UTC (rev 1139) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2008-02-17 17:00:23 UTC (rev 1140) @@ -1,3 +1,10 @@ +2008-02-17 Danny Backx <dan...@us...> + + * include/aygshell.h (SHInitExtraControls): Move into the extern "C" + construction. + * include/aygshell.h (SHDoneButton, WS_NONAVDONEBUTTON, SHDB_SHOW, + SHDB_HIDE): Define. + 2008-01-09 Danny Backx <dan...@us...> * include/aygshell.h (SIPINFO): Remove, this was a duplicate. Modified: trunk/cegcc/src/w32api/include/aygshell.h =================================================================== --- trunk/cegcc/src/w32api/include/aygshell.h 2008-02-08 22:28:01 UTC (rev 1139) +++ trunk/cegcc/src/w32api/include/aygshell.h 2008-02-17 17:00:23 UTC (rev 1140) @@ -5,16 +5,16 @@ #pragma GCC system_header #endif +#ifdef __cplusplus +extern "C" { +#endif + #if _WIN32_WCE >= 400 #include <windows.h> #include <basetyps.h> /* Make sure we have a CLSID definition */ #include <shellapi.h> /* for WINSHELLAPI */ -#ifdef __cplusplus -extern "C" { -#endif - /* * Menu Bar */ @@ -229,14 +229,21 @@ HBITMAP SHLoadImageResource(HINSTANCE hinst, UINT uIdImageFile); #endif /* _WIN32_WCE >= 0x0300 */ -#ifdef __cplusplus -} -#endif - #endif /* _WIN32_WCE >= 400 */ #if (_WIN32_WCE >= 0x0300) BOOL SHInitExtraControls(void); + +#define WS_NONAVDONEBUTTON WS_MINIMIZEBOX + +BOOL SHDoneButton(HWND, DWORD); +#define SHDB_SHOW 1 +#define SHDB_HIDE 2 + +#endif /* _WIN32_WCE >= 0x0300 */ + +#ifdef __cplusplus +} #endif #endif /* _AYGSHELL_H */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |