Changeset 1484 for trunk/src/kernel32/conout.cpp
- Timestamp:
- Oct 27, 1999, 8:36:36 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/conout.cpp
r149 r1484 1 /* $Id: conout.cpp,v 1. 3 1999-06-21 18:53:51phaller Exp $ */1 /* $Id: conout.cpp,v 1.4 1999-10-27 18:36:35 phaller Exp $ */ 2 2 3 3 /* … … 13 13 #endif 14 14 15 #undef DEBUG_LOCAL16 #undef DEBUG_LOCAL215 //#undef DEBUG_LOCAL 16 //#undef DEBUG_LOCAL2 17 17 18 18 … … 83 83 { 84 84 void _System _O32_SetLastError(DWORD dwError); 85 int _System _O32_GetLastError(void); 85 86 } 86 87 … … 93 94 } 94 95 96 inline int GetLastError(void) 97 { 98 USHORT sel = GetFS(); 99 int rc; 100 101 rc = _O32_GetLastError(); 102 SetFS(sel); 103 return rc; 104 } 95 105 96 106
Note:
See TracChangeset
for help on using the changeset viewer.