From 9ac852ae857ca089c37e74069fe3f83396b43900 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Fri, 25 Feb 2000 21:35:39 +0000 Subject: [PATCH] Add prototype for CRTDLL_wcstol. --- include/crtdll.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/crtdll.h b/include/crtdll.h index 3d5a8155058..17e184e3c4b 100644 --- a/include/crtdll.h +++ b/include/crtdll.h @@ -60,6 +60,7 @@ LPWSTR __cdecl CRTDLL_wcsrchr( LPWSTR str, WCHAR ch ); INT __cdecl CRTDLL_wcsspn( LPCWSTR str, LPCWSTR accept ); LPWSTR __cdecl CRTDLL_wcsstr( LPCWSTR str, LPCWSTR sub ); LPWSTR __cdecl CRTDLL_wcstok( LPWSTR str, LPCWSTR delim ); +INT __cdecl CRTDLL_wcstol( LPWSTR s, LPWSTR *end, INT base ); INT __cdecl CRTDLL_wcstombs( LPSTR dst, LPCWSTR src, INT n ); INT __cdecl CRTDLL_wctomb( LPSTR dst, WCHAR ch );