Changeset 10163 for trunk/include/heapstring.h
- Timestamp:
- Jul 14, 2003, 3:43:33 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/heapstring.h
r9673 r10163 11 11 #include <wine\unicode.h> 12 12 //SvL: strcase -> case insensitive! 13 #define strncasecmp 14 #define strcasecmp 13 #define strncasecmp lstrncmpiA 14 #define strcasecmp lstrcmpiA 15 15 #define strncmpiW lstrncmpiW 16 #define _strlwr(a) 16 #define _strlwr(a) strlwr(a) 17 17 18 18 … … 41 41 int WIN32API lstrcmpiA (LPCSTR arg1, LPCSTR arg2); 42 42 int WIN32API lstrcmpiW (LPCWSTR arg1, LPCWSTR arg2); 43 int WIN32API lstrcpynAtoW (LPWSTR unicode, LPCSTR ascii, int asciilen);44 int WIN32API lstrcpynWtoA (LPSTR ascii, LPCWSTR unicode, int unilen);43 int WIN32API lstrcpynAtoW (LPWSTR unicode, LPCSTR ascii, int unilen); 44 int WIN32API lstrcpynWtoA (LPSTR ascii, LPCWSTR unicode, int asciilen); 45 45 LPSTR WIN32API lstrcpyWtoA (LPSTR ascii, LPCWSTR unicode); 46 46 LPWSTR WIN32API lstrcpyAtoW (LPWSTR unicode, LPCSTR ascii); 47 int WIN32API lstrlenWtoA ( LPCWSTR ustring, int ulen ); 48 int WIN32API lstrlenAtoW ( LPCSTR astring, int alen ); 47 49 48 50 LPVOID WIN32API HEAP_xalloc ( HANDLE heap, DWORD flags, DWORD size );
Note:
See TracChangeset
for help on using the changeset viewer.