Changeset 1280 for trunk/src/kernel32/heapstring.cpp
- Timestamp:
- Oct 14, 1999, 11:21:43 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/heapstring.cpp
r1131 r1280 1 /* $Id: heapstring.cpp,v 1.1 3 1999-10-04 20:52:33sandervl Exp $ */1 /* $Id: heapstring.cpp,v 1.14 1999-10-14 09:21:41 sandervl Exp $ */ 2 2 3 3 /* … … 12 12 * Includes * 13 13 *****************************************************************************/ 14 #undef DEBUG 14 15 15 16 #include <os2win.h> … … 275 276 arg2, 276 277 arg2)); 277 // return UniStrcmp( (UniChar*)arg1, 278 // (UniChar*)arg2 ); 278 279 if(arg1 == NULL) 280 return -1; 281 if(arg2 == NULL) 282 return 1; 283 279 284 return wcscmp( (wchar_t*)arg1, 280 285 (wchar_t*)arg2 );
Note:
See TracChangeset
for help on using the changeset viewer.