From: <dan...@us...> - 2006-11-18 07:45:24
|
Revision: 809 http://svn.sourceforge.net/cegcc/?rev=809&view=rev Author: dannybackx Date: 2006-11-17 23:45:23 -0800 (Fri, 17 Nov 2006) Log Message: ----------- Fix typo and missing prototypes; this now enables the mingw compiler to correctly build the ctlview application from the Boling book. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/winbase.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-16 14:25:37 UTC (rev 808) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2006-11-18 07:45:23 UTC (rev 809) @@ -1,3 +1,9 @@ +2006-11-18 Danny Backx <dan...@us...> + + * include/winbase.h (lstrcpy, lstrcat, lstrlen) : Add prototypes + for the functions pointed to. + * include/winbase.h (lstrcpy) : Fix typo. + 2006-11-12 Pedro Alves <ped...@po...> * include/winuser.h (GetSystemMenu): Implement as macro. Modified: trunk/cegcc/src/w32api/include/winbase.h =================================================================== --- trunk/cegcc/src/w32api/include/winbase.h 2006-11-16 14:25:37 UTC (rev 808) +++ trunk/cegcc/src/w32api/include/winbase.h 2006-11-18 07:45:23 UTC (rev 809) @@ -2459,10 +2459,14 @@ #ifdef _WIN32_WCE #include <kfuncs.h> -#define lstrcpyW wscpy +#define lstrcpyW wcscpy #define lstrcatW wcscat #define lstrlenW wcslen +wchar_t *wcscpy(wchar_t *dest, const wchar_t *src); +wchar_t *wcscat(wchar_t *dest, const wchar_t *src); +size_t wcslen(const wchar_t *string); + #endif #ifdef __cplusplus This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |