Changeset 5034 for trunk/src/kernel32/console.cpp
- Timestamp:
- Jan 29, 2001, 1:43:33 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/console.cpp
r4525 r5034 1 /* $Id: console.cpp,v 1.2 3 2000-10-23 19:35:10 sandervlExp $ */1 /* $Id: console.cpp,v 1.24 2001-01-29 00:43:33 bird Exp $ */ 2 2 3 3 /* … … 50 50 51 51 52 /***************************************************************************** 53 * Includes * 54 *****************************************************************************/ 55 52 /******************************************************************************* 53 * Header Files * 54 *******************************************************************************/ 56 55 #include <builtin.h> 57 56 #include <stdlib.h> … … 93 92 #include <os2sel.h> 94 93 95 /***************************************************************************** 96 * Defines * 97 *****************************************************************************/ 98 99 /***************************************************************************** 100 * Structures * 101 *****************************************************************************/ 102 103 104 /***************************************************************************** 105 * Process Global Structures * 106 *****************************************************************************/ 107 94 95 /******************************************************************************* 96 * Process Global Structures * 97 *******************************************************************************/ 108 98 static ICONSOLEGLOBALS ConsoleGlobals; 109 99 static ICONSOLEINPUT ConsoleInput; 110 BOOL flVioConsole = FALSE; 111 112 /***************************************************************************** 113 * Prototypes * 114 *****************************************************************************/ 100 BOOL flVioConsole = FALSE; 101 102 /******************************************************************************* 103 * Internal Functions * 104 *******************************************************************************/ 105 static void iConsoleInputQueueLock(); 106 static void iConsoleInputQueueUnlock(); 115 107 116 108 … … 127 119 *****************************************************************************/ 128 120 129 void staticiConsoleInputQueueLock()121 static void iConsoleInputQueueLock() 130 122 { 131 123 APIRET rc; … … 151 143 *****************************************************************************/ 152 144 153 void staticiConsoleInputQueueUnlock()145 static void iConsoleInputQueueUnlock() 154 146 { 155 147 APIRET rc; … … 326 318 DWORD rc; 327 319 328 static fDevicesInitialized;/* have we been initialized already ? */320 static BOOL fDevicesInitialized; /* have we been initialized already ? */ 329 321 330 322 if (fDevicesInitialized == TRUE) /* OK, we're already done */
Note:
See TracChangeset
for help on using the changeset viewer.