Ignore:
Timestamp:
Oct 18, 2000, 7:09:34 PM (25 years ago)
Author:
sandervl
Message:

LoadLibraryExA + memory map close fix, added new registry keys for installation, don't log guard page violation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/process.cpp

    r3074 r4496  
    1 /* $Id: process.cpp,v 1.6 2000-03-10 16:12:00 sandervl Exp $ */
     1/* $Id: process.cpp,v 1.7 2000-10-18 17:09:33 sandervl Exp $ */
    22
    33/*
     
    6969//******************************************************************************
    7070//******************************************************************************
    71 BOOL WIN32API GetExitCodeProcess(HANDLE arg1, LPDWORD  arg2)
     71BOOL WIN32API GetExitCodeProcess(HANDLE hProcess, LPDWORD  arg2)
    7272{
    7373 BOOL rc;
    7474
    75     rc = O32_GetExitCodeProcess(arg1, arg2);
    76     dprintf(("KERNEL32:  GetExitCodeProcess returned %d (%x)", rc, (arg2) ? *arg2 : 0));
     75    rc = O32_GetExitCodeProcess(hProcess, arg2);
     76    dprintf(("KERNEL32:  GetExitCodeProcess %x returned %d (%x)", hProcess, rc, (arg2) ? *arg2 : 0));
    7777    return rc;
    7878}
Note: See TracChangeset for help on using the changeset viewer.