Changeset 2802 for trunk/src/kernel32/process.cpp
- Timestamp:
- Feb 16, 2000, 3:25:43 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/process.cpp
r1927 r2802 1 /* $Id: process.cpp,v 1. 4 1999-12-01 19:46:49sandervl Exp $ */1 /* $Id: process.cpp,v 1.5 2000-02-16 14:23:11 sandervl Exp $ */ 2 2 3 3 /* … … 30 30 #include <winimagebase.h> 31 31 #include "oslibdos.h" 32 33 #define DBG_LOCALLOG DBG_process 34 #include "dbglocal.h" 32 35 33 36 #define SHUTDOWN_NORETRY 1 … … 68 71 BOOL WIN32API GetExitCodeProcess(HANDLE arg1, LPDWORD arg2) 69 72 { 70 dprintf(("KERNEL32: GetExitCodeProcess\n")); 71 return O32_GetExitCodeProcess(arg1, arg2); 73 BOOL rc; 74 75 rc = O32_GetExitCodeProcess(arg1, arg2); 76 dprintf(("KERNEL32: GetExitCodeProcess returned %d (%x)", rc, (arg2) ? *arg2 : 0)); 77 return rc; 72 78 } 73 79 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.