Changeset 3584 for trunk/kStuff/kLdr/testcase/tstExeMainStub.c
- Timestamp:
- Sep 3, 2007, 12:46:37 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kLdr/testcase/tstExeMainStub.c
r2878 r3584 31 31 #include "tst.h" 32 32 33 #if def __OS2__33 #if K_OS == K_OS_OS2 34 34 # define INCL_BASE 35 35 # include <os2.h> 36 36 37 #elif defined(__WIN__)37 #elif K_OS == K_OS_WINDOWS 38 38 /* nothing */ 39 39 40 #elif defined(__NT__)40 #elif K_OS == K_OS_NT 41 41 # include <ddk/ntapi.h> /** @todo fix the nt port. */ 42 42 … … 49 49 50 50 51 #if def __OS2__51 #if K_OS == K_OS_OS2 52 52 /** 53 53 * OS/2 'main'. … … 60 60 } 61 61 62 #elif defined(__WIN__)62 #elif K_OS == K_OS_WINDOWS 63 63 /** 64 64 * Windows'main' … … 71 71 } 72 72 73 #elif defined(__NT__)73 #elif K_OS == K_OS_NT 74 74 /** 75 75 * Windows NT 'main'
Note:
See TracChangeset
for help on using the changeset viewer.