Ignore:
Timestamp:
Feb 16, 2000, 3:25:43 PM (26 years ago)
Author:
sandervl
Message:

Added new logging feature

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:49 sandervl Exp $ */
     1/* $Id: process.cpp,v 1.5 2000-02-16 14:23:11 sandervl Exp $ */
    22
    33/*
     
    3030#include <winimagebase.h>
    3131#include "oslibdos.h"
     32
     33#define DBG_LOCALLOG    DBG_process
     34#include "dbglocal.h"
    3235
    3336#define SHUTDOWN_NORETRY 1
     
    6871BOOL WIN32API GetExitCodeProcess(HANDLE arg1, LPDWORD  arg2)
    6972{
    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;
    7278}
    7379//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.