source: trunk/include/win/wine/winestring.h@ 43

Last change on this file since 43 was 43, checked in by sandervl, 26 years ago

* empty log message *

File size: 735 bytes
Line 
1#ifndef _INCLUDE_WINE_STRINGS_H
2#define _INCLUDE_WINE_STRINGS_H
3
4#include "windef.h"
5
6INT16 WINAPI WideCharToLocal16(LPSTR,LPWSTR,INT16);
7INT WINAPI WideCharToLocal(LPSTR,LPWSTR,INT);
8INT16 WINAPI LocalToWideChar16(LPWSTR,LPSTR,INT16);
9INT WINAPI LocalToWideChar(LPWSTR,LPSTR,INT);
10INT WINAPI lstrncmpA(LPCSTR,LPCSTR,INT);
11INT WINAPI lstrncmpW(LPCWSTR,LPCWSTR,INT);
12INT WINAPI lstrncmpiA(LPCSTR,LPCSTR,INT);
13INT WINAPI lstrncmpiW(LPCWSTR,LPCWSTR,INT);
14LPWSTR WINAPI lstrcpyAtoW(LPWSTR,LPCSTR);
15LPSTR WINAPI lstrcpyWtoA(LPSTR,LPCWSTR);
16LPWSTR WINAPI lstrcpynAtoW(LPWSTR,LPCSTR,INT);
17LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
18#endif /* _INCLUDE_WINE_STRINGS_H */
Note: See TracBrowser for help on using the repository browser.