Changeset 21916 for trunk/src/kernel32/console.cpp
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/kernel32/console.cpp
r21426 r21916 53 53 * Header Files * 54 54 *******************************************************************************/ 55 #include <process.h> 56 #include <stdlib.h> 57 #include <string.h> 55 56 // Vio/Kbd/Mou declarations conflict in GCC and in real OS2TK headers; 57 // force GCC declarations since we link against GCC libs 58 #if defined (__EMX__) && defined (USE_OS2_TOOLKIT_HEADERS) 59 #undef USE_OS2_TOOLKIT_HEADERS 60 #endif 58 61 59 62 #define INCL_WIN … … 69 72 #define INCL_AVIO 70 73 #include <os2wrap.h> //Odin32 OS/2 api wrappers 74 75 #include <process.h> 76 #include <stdlib.h> 77 #include <string.h> 71 78 72 79 #include <win32type.h> … … 2308 2315 } 2309 2316 2317 extern "C" { 2310 2318 2311 2319 /***************************************************************************** … … 3772 3780 return fResult; 3773 3781 } 3782 3783 } // extern "C"
Note:
See TracChangeset
for help on using the changeset viewer.