Changeset 1605 for trunk/src/kernel32/heapstring.cpp
- Timestamp:
- Nov 5, 1999, 10:16:57 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/heapstring.cpp
r1484 r1605 1 /* $Id: heapstring.cpp,v 1.1 6 1999-10-27 18:36:36 phallerExp $ */1 /* $Id: heapstring.cpp,v 1.17 1999-11-05 09:16:57 sandervl Exp $ */ 2 2 3 3 /* … … 12 12 * Includes * 13 13 *****************************************************************************/ 14 #undef DEBUG 14 15 15 16 #include <odin.h> … … 446 447 arg2)); 447 448 449 if(arg1 == NULL) 450 return -1; 451 452 if(arg2 == NULL) 453 return 1; 454 448 455 return O32_lstrcmpi(arg1, arg2); 449 456 } … … 471 478 arg2)); 472 479 480 if(arg1 == NULL) 481 return -1; 482 483 if(arg2 == NULL) 484 return 1; 485 473 486 // NOTE: This function has no equivalent in uunidef.h 474 487 astr1 = UnicodeToAsciiString((LPWSTR)arg1); 475 488 astr2 = UnicodeToAsciiString((LPWSTR)arg2); 476 rc = O32_lstrcmpi(astr1, astr2);489 rc = lstrcmpiA(astr1, astr2); 477 490 FreeAsciiString(astr2); 478 491 FreeAsciiString(astr1);
Note:
See TracChangeset
for help on using the changeset viewer.