Changeset 435 for trunk/src/kernel32
- Timestamp:
- Aug 6, 1999, 2:14:12 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/console.cpp
r297 r435 1 /* $Id: console.cpp,v 1.1 0 1999-07-12 17:45:51phaller Exp $ */1 /* $Id: console.cpp,v 1.11 1999-08-06 12:14:10 phaller Exp $ */ 2 2 3 3 /* … … 53 53 * Includes * 54 54 *****************************************************************************/ 55 56 #include <builtin.h> 57 #include <stdlib.h> 58 #include <string.h> 55 59 56 60 #define INCL_WIN … … 63 67 #define INCL_AVIO 64 68 #include <os2wrap.h> //Odin32 OS/2 api wrappers 65 #include <builtin.h>66 #include <stdlib.h>67 #include <string.h>68 69 69 70 #include <win32type.h> -
trunk/src/kernel32/heapstring.cpp
r434 r435 656 656 if (!p) 657 657 { 658 dprintf(("KERNEL32: HEAP_malloc(%08xh,%08xh,%08xh) out of memory.\n", 659 heap, 660 flags, 658 dprintf(("KERNEL32: HEAP_malloc(%08xh) out of memory.\n", 661 659 size)); 662 660 } … … 682 680 if (!p) 683 681 { 684 dprintf(("KERNEL32: HEAP_realloc(%08xh,%08xh,%08xh,%08xh) out of memory.\n", 685 heap, 686 flags, 682 dprintf(("KERNEL32: HEAP_realloc(%08xh,%08xh) out of memory.\n", 687 683 lpMem, 688 684 size)); -
trunk/src/kernel32/misc.cpp
r433 r435 1 /* $Id: misc.cpp,v 1. 4 1999-08-06 09:03:04phaller Exp $ */1 /* $Id: misc.cpp,v 1.5 1999-08-06 12:14:12 phaller Exp $ */ 2 2 3 3 /* … … 246 246 int SYSTEM EXPORT WriteLog(char *tekst, ...) 247 247 { 248 USHORT sel = RestoreOS2FS();248 // USHORT sel = RestoreOS2FS(); 249 249 va_list argptr; 250 250 … … 269 269 } 270 270 271 SetFS(sel);271 // SetFS(sel); 272 272 return 1; 273 273 } … … 275 275 int SYSTEM EXPORT WriteLogError(char *tekst, ...) 276 276 { 277 USHORT sel = RestoreOS2FS();277 // USHORT sel = RestoreOS2FS(); 278 278 va_list argptr; 279 279 … … 285 285 printf("\n"); 286 286 287 SetFS(sel);287 // SetFS(sel); 288 288 return 1; 289 289 }
Note:
See TracChangeset
for help on using the changeset viewer.