Mercurial > sdl-ios-xcode
diff include/SDL_stdinc.h @ 1901:f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Fixed performance problem with testsprite2 on the D3D driver.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 13 Jul 2006 08:13:02 +0000 |
parents | c121d94672cb |
children | f132024010be |
line wrap: on
line diff
--- a/include/SDL_stdinc.h Wed Jul 12 09:25:17 2006 +0000 +++ b/include/SDL_stdinc.h Thu Jul 13 08:13:02 2006 +0000 @@ -413,6 +413,12 @@ extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string); #endif +#ifdef HAVE_WCSLEN +#define SDL_wcslen wcslen +#else +extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *string); +#endif + #ifdef HAVE_STRLCPY #define SDL_strlcpy strlcpy #else