Changeset 907 for trunk/dll/errutil.c
- Timestamp:
- Jan 6, 2008, 8:26:17 AM (18 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/errutil.c
r904 r907 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2004, 200 7Steven H. Levine9 Copyright (c) 2004, 2008 Steven H. Levine 10 10 11 11 12 Aug 04 SHL Comments … … 27 27 14 Aug 07 SHL Add GetMSecTimer 28 28 14 Aug 07 SHL Use GetMSecTimer in DbgMsg 29 05 Jan 08 SHL Renamed from error.c to match errutil.h 29 30 30 31 ***********************************************************************/ 32 33 #include <stdio.h> 34 #include <string.h> 35 #include <stdarg.h> 31 36 32 37 #define INCL_DOS … … 34 39 #define INCL_WIN 35 40 36 #include <os2.h> 37 #include <stdlib.h> 38 #include <stdio.h> 39 #include <string.h> 40 #include <stdarg.h> 41 42 #include "fm3dll.h" 41 #include "errutil.h" 42 #include "strutil.h" // GetPString 43 43 #include "fm3str.h" 44 45 #pragma data_seg(GLOBAL2) 46 PSZ DEBUG_STRING; 44 47 45 48 #pragma data_seg(DATA1) … … 219 222 pErrInfoBlk = WinGetErrorInfo(hab); 220 223 if (!pErrInfoBlk) { 221 ERRORID id = WinGetLastError(hab); // 03 Jan 08 SHL fixme debug224 ERRORID id = WinGetLastError(hab); 222 225 psz = pszBuf + strlen(pszBuf); 223 226 sprintf(psz, " WinGetErrorInfo failed (%u)", id);
Note:
See TracChangeset
for help on using the changeset viewer.