Ignore:
Timestamp:
Feb 9, 2001, 7:31:06 PM (25 years ago)
Author:
sandervl
Message:

heap (shared+code) changes + lx dll unload workaround

File:
1 edited

Legend:

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

    r5016 r5075  
    1 /* $Id: wprocess.cpp,v 1.112 2001-01-23 11:59:45 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.113 2001-02-09 18:31:06 sandervl Exp $ */
    22
    33/*
     
    15291529            lpEnvironment, lpCurrentDirectory, lpStartupInfo));
    15301530
     1531#ifdef DEBUG
     1532    if(lpStartupInfo) {
     1533        dprintf(("lpStartupInfo->lpReserved %x", lpStartupInfo->lpReserved));
     1534        dprintf(("lpStartupInfo->lpDesktop %x", lpStartupInfo->lpDesktop));
     1535        dprintf(("lpStartupInfo->lpTitle %s", lpStartupInfo->lpTitle));
     1536        dprintf(("lpStartupInfo->dwX %x", lpStartupInfo->dwX));
     1537        dprintf(("lpStartupInfo->dwY %x", lpStartupInfo->dwY));
     1538        dprintf(("lpStartupInfo->dwXSize %x", lpStartupInfo->dwXSize));
     1539        dprintf(("lpStartupInfo->dwYSize %x", lpStartupInfo->dwYSize));
     1540        dprintf(("lpStartupInfo->dwXCountChars %x", lpStartupInfo->dwXCountChars));
     1541        dprintf(("lpStartupInfo->dwYCountChars %x", lpStartupInfo->dwYCountChars));
     1542        dprintf(("lpStartupInfo->dwFillAttribute %x", lpStartupInfo->dwFillAttribute));
     1543        dprintf(("lpStartupInfo->dwFlags %x", lpStartupInfo->dwFlags));
     1544        dprintf(("lpStartupInfo->wShowWindow %x", lpStartupInfo->wShowWindow));
     1545        dprintf(("lpStartupInfo->hStdInput %x", lpStartupInfo->hStdInput));
     1546        dprintf(("lpStartupInfo->hStdOutput %x", lpStartupInfo->hStdOutput));
     1547        dprintf(("lpStartupInfo->hStdError %x", lpStartupInfo->hStdError));
     1548    }
     1549#endif
     1550
    15311551    // open32 does not support DEBUG_ONLY_THIS_PROCESS
    15321552    if(dwCreationFlags & DEBUG_ONLY_THIS_PROCESS)
Note: See TracChangeset for help on using the changeset viewer.