Changeset 15869
- Timestamp:
- Mar 13, 2001, 7:45:35 PM (24 years ago)
- Location:
- tags/trunk/src/kernel32
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/kernel32/KERNEL32.CPP ¶
r15582 r15869 1 /* $Id: KERNEL32.CPP,v 1.5 8 2001-01-23 18:31:25sandervl Exp $ */1 /* $Id: KERNEL32.CPP,v 1.59 2001-03-13 18:45:32 sandervl Exp $ */ 2 2 3 3 /* … … 32 32 33 33 #include "misc.h" 34 #include <builtin.h>35 34 #include "heap.h" 36 35 #include "handlemanager.h" -
TabularUnified tags/trunk/src/kernel32/async.cpp ¶
r14832 r15869 1 /* $Id: async.cpp,v 1. 9 2000-09-15 13:24:29sandervl Exp $ */1 /* $Id: async.cpp,v 1.10 2001-03-13 18:45:32 sandervl Exp $ */ 2 2 3 3 /* … … 36 36 #define INCL_AVIO 37 37 #include <os2wrap.h> //Odin32 OS/2 api wrappers 38 #include <builtin.h>39 38 40 39 #include <stdlib.h> -
TabularUnified tags/trunk/src/kernel32/conout.cpp ¶
r15582 r15869 1 /* $Id: conout.cpp,v 1. 9 2001-01-23 18:31:25sandervl Exp $ */1 /* $Id: conout.cpp,v 1.10 2001-03-13 18:45:32 sandervl Exp $ */ 2 2 3 3 /* … … 58 58 #define INCL_AVIO 59 59 #include <os2wrap.h> //Odin32 OS/2 api wrappers 60 #include <builtin.h>61 60 #include <stdlib.h> 62 61 #include <string.h> -
TabularUnified tags/trunk/src/kernel32/conprop.cpp ¶
r13382 r15869 1 /* $Id: conprop.cpp,v 1.1 0 2000-02-16 14:25:32 sandervl Exp $ */1 /* $Id: conprop.cpp,v 1.11 2001-03-13 18:45:32 sandervl Exp $ */ 2 2 3 3 /* … … 33 33 #define INCL_AVIO 34 34 #include <os2wrap.h> //Odin32 OS/2 api wrappers 35 #include <builtin.h>36 35 37 36 #include <stdlib.h> -
TabularUnified tags/trunk/src/kernel32/conprop2.cpp ¶
r13564 r15869 1 /* $Id: conprop2.cpp,v 1. 6 2000-03-03 11:15:57sandervl Exp $ */1 /* $Id: conprop2.cpp,v 1.7 2001-03-13 18:45:33 sandervl Exp $ */ 2 2 3 3 /* … … 37 37 #define INCL_AVIO 38 38 #include <os2wrap.h> //Odin32 OS/2 api wrappers 39 #include <builtin.h>40 39 41 40 #include <win32type.h> -
TabularUnified tags/trunk/src/kernel32/console.cpp ¶
r15633 r15869 1 /* $Id: console.cpp,v 1.2 5 2001-02-08 10:23:40sandervl Exp $ */1 /* $Id: console.cpp,v 1.26 2001-03-13 18:45:33 sandervl Exp $ */ 2 2 3 3 /* … … 53 53 * Header Files * 54 54 *******************************************************************************/ 55 #include <builtin.h>56 55 #include <stdlib.h> 57 56 #include <string.h> -
TabularUnified tags/trunk/src/kernel32/exceptions.cpp ¶
r15691 r15869 1 /* $Id: exceptions.cpp,v 1.5 0 2001-02-14 10:36:45sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.51 2001-03-13 18:45:33 sandervl Exp $ */ 2 2 3 3 /* WARNING: Compiling this module with ICC with optimizations turned on */ … … 62 62 #include <assert.h> 63 63 #include <string.h> 64 #include <builtin.h>65 64 #include "exceptions.h" 66 65 #include "exceptutil.h" -
TabularUnified tags/trunk/src/kernel32/initterm.cpp ¶
r15840 r15869 90 90 /* calling this function. */ 91 91 /****************************************************************************/ 92 unsigned long SYSTEM _DLL_InitTerm(unsigned long hModule, unsigned long 93 ulFlag) 92 ULONG DLLENTRYPOINT_CCONV DLLENTRYPOINT_NAME(ULONG hModule, ULONG ulFlag) 94 93 { 95 94 size_t i; … … 116 115 char *endofpath = strrchr(kernel32Path, '\\'); 117 116 *(endofpath+1) = 0; 118 dprintf(("kernel32 init %s %s ", __DATE__, __TIME__));117 dprintf(("kernel32 init %s %s (%x)", __DATE__, __TIME__, DLLENTRYPOINT_NAME)); 119 118 ctordtorInit(); 120 119 -
TabularUnified tags/trunk/src/kernel32/ordinals.cpp ¶
r15434 r15869 15 15 #include <winnls.h> 16 16 #include "unicode.h" 17 #include <builtin.h>18 17 #include "handlemanager.h" 19 18 #include <string.h> -
TabularUnified tags/trunk/src/kernel32/os2heap.cpp ¶
r14041 r15869 1 /* $Id: os2heap.cpp,v 1.1 5 2000-04-30 16:31:47sandervl Exp $ */1 /* $Id: os2heap.cpp,v 1.16 2001-03-13 18:45:33 sandervl Exp $ */ 2 2 3 3 /* … … 18 18 #define INCL_DOSERRORS 19 19 #include <os2wrap.h> //Odin32 OS/2 api wrappers 20 #include <builtin.h>21 20 #include <stdlib.h> 22 21 #include <string.h> -
TabularUnified tags/trunk/src/kernel32/stubs.cpp ¶
r15154 r15869 17 17 #include <winnls.h> 18 18 #include "unicode.h" 19 #include <builtin.h>20 19 #include "handlemanager.h" 21 20 #include <string.h> -
TabularUnified tags/trunk/src/kernel32/thunk.cpp ¶
r13653 r15869 1 /* $Id: thunk.cpp,v 1. 5 2000-03-10 16:12:01sandervl Exp $ */1 /* $Id: thunk.cpp,v 1.6 2001-03-13 18:45:34 sandervl Exp $ */ 2 2 3 3 /* … … 19 19 #include <os2win.h> 20 20 #include <string.h> 21 #include <builtin.h>22 21 #include "thunk.h" 23 22 -
TabularUnified tags/trunk/src/kernel32/version.cpp ¶
r14954 r15869 1 /* $Id: version.cpp,v 1. 2 2000-10-02 18:39:36sandervl Exp $ */1 /* $Id: version.cpp,v 1.3 2001-03-13 18:45:34 sandervl Exp $ */ 2 2 3 3 /* … … 29 29 #include <heapstring.h> 30 30 31 #include "misc.h" 32 #include <builtin.h> 31 #include <misc.h> 33 32 #include "heap.h" 34 #include "handlemanager.h"33 #include <handlemanager.h> 35 34 #include "wprocess.h" 36 35 #include "oslibdos.h" -
TabularUnified tags/trunk/src/kernel32/winres.cpp ¶
r15142 r15869 1 /* $Id: winres.cpp,v 1.2 8 2000-11-09 18:18:11sandervl Exp $ */1 /* $Id: winres.cpp,v 1.29 2001-03-13 18:45:34 sandervl Exp $ */ 2 2 3 3 /* … … 18 18 #include <os2wrap.h> //Odin32 OS/2 api wrappers 19 19 #include <stdarg.h> 20 #ifdef __IBMCPP__21 #include <builtin.h>22 #endif23 20 #include <stdio.h> 24 21 #include <stdlib.h> -
TabularUnified tags/trunk/src/kernel32/wprocess.cpp ¶
r15638 r15869 1 /* $Id: wprocess.cpp,v 1.11 3 2001-02-09 18:31:06sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.114 2001-03-13 18:45:35 sandervl Exp $ */ 2 2 3 3 /* … … 31 31 #include <vmutex.h> 32 32 #include <handlemanager.h> 33 34 #ifdef __IBMCPP__35 #include <builtin.h>36 #endif37 33 38 34 #include "odin32validate.h"
Note:
See TracChangeset
for help on using the changeset viewer.