- Timestamp:
- Nov 5, 1999, 10:16:57 AM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/KERNEL32.DEF
r1490 r1605 1 ; $Id: KERNEL32.DEF,v 1.4 7 1999-10-28 12:01:11sandervl Exp $1 ; $Id: KERNEL32.DEF,v 1.48 1999-11-05 09:16:56 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 1043 1043 ;shared memory allocation 1044 1044 _smalloc__FUi @1271 1045 1046 ;Export for MSACM32 1047 _wsnprintfA @2000 -
trunk/src/kernel32/atom.cpp
r1275 r1605 1 /* $Id: atom.cpp,v 1. 5 1999-10-14 01:47:39 birdExp $ */1 /* $Id: atom.cpp,v 1.6 1999-11-05 09:16:57 sandervl Exp $ */ 2 2 3 3 /* … … 138 138 ATOM WIN32API GlobalFindAtomA( LPCSTR arg1) 139 139 { 140 dprintf(("KERNEL32: OS2GlobalFindAtomA\n")); 140 if (arg1 < (LPCSTR)0x10000) 141 dprintf(("KERNEL32: GlobalFindAtomA %#4x\n", arg1)); 142 else 143 dprintf(("KERNEL32: GlobalFindAtomA %s\n", arg1)); 141 144 return O32_GlobalFindAtom(arg1); 142 145 } -
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); -
trunk/src/kernel32/kernel32exp.def
r1472 r1605 652 652 _PROFILE_SetOdinIniBool@12 @1269 653 653 _PROFILE_SaveOdinIni@0 @1270 654 _smalloc__FUi @1271 655 _wsnprintfA @2000
Note:
See TracChangeset
for help on using the changeset viewer.