Changeset 22123 for branches/swt/include
- Timestamp:
- Feb 14, 2016, 2:29:03 PM (10 years ago)
- Location:
- branches/swt/include
- Files:
-
- 2 edited
-
heapstring.h (modified) (2 diffs)
-
win/winbase.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/swt/include/heapstring.h
r21916 r22123 8 8 9 9 #include <odin.h> 10 10 #include <string.h> 11 11 #include <wine/unicode.h> 12 12 //SvL: strcase -> case insensitive! … … 34 34 int WIN32API lstrcmpA (LPCSTR arg1, LPCSTR arg2); 35 35 int WIN32API lstrcmpW (LPCWSTR arg1, LPCWSTR arg2); 36 int WIN32API lstrncmpA (LPCSTR arg1, LPCSTR arg2, int i);37 int WIN32API lstrncmpW (LPCWSTR arg1, LPCWSTR arg2, int i);38 int WIN32API lstrncmpiA (LPCSTR arg1, LPCSTR arg2, int i);39 int WIN32API lstrncmpiW (LPCWSTR arg1, LPCWSTR arg2, int i);36 int WIN32API lstrncmpA (LPCSTR arg1, LPCSTR arg2, size_t l); 37 int WIN32API lstrncmpW (LPCWSTR arg1, LPCWSTR arg2, size_t l); 38 int WIN32API lstrncmpiA (LPCSTR arg1, LPCSTR arg2, size_t l); 39 int WIN32API lstrncmpiW (LPCWSTR arg1, LPCWSTR arg2, size_t l); 40 40 #define lstrcmpniW lstrncmpiW 41 41 LPSTR WIN32API lstrcpyA (LPSTR arg1, LPCSTR arg2); -
branches/swt/include/win/winbase.h
r22081 r22123 2271 2271 INT WINAPI lstrcmpiW(LPCWSTR,LPCWSTR); 2272 2272 #define lstrcmpi WINELIB_NAME_AW(lstrcmpi) 2273 int WINAPI lstrncmpiA(LPCSTR, LPCSTR, int);2274 int WINAPI lstrncmpiW(LPCWSTR, LPCWSTR, int);2273 int WINAPI lstrncmpiA(LPCSTR, LPCSTR, size_t); 2274 int WINAPI lstrncmpiW(LPCWSTR, LPCWSTR, size_t); 2275 2275 #define lstrncmpi WINELIB_NAME_AW(lstrncmpi) 2276 2276
Note:
See TracChangeset
for help on using the changeset viewer.
