Ignore:
Timestamp:
Mar 19, 2001, 8:27:14 PM (24 years ago)
Author:
sandervl
Message:

pe loader fix (graceful failure when unable to find dll) + several small changes

File:
1 edited

Legend:

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

    r5308 r5332  
    1 /* $Id: wprocess.cpp,v 1.114 2001-03-13 18:45:35 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.115 2001-03-19 19:27:14 sandervl Exp $ */
    22
    33/*
     
    128128// Set up the TIB selector and memory for the current thread
    129129//******************************************************************************
    130 TEB *InitializeTIB(BOOL fMainThread)
     130TEB * WIN32API InitializeTIB(BOOL fMainThread)
    131131{
    132132  TEB   *winteb;
     
    261261}
    262262//******************************************************************************
     263//******************************************************************************
     264ULONG WIN32API GetProcessTIBSel()
     265{
     266    if(fExitProcess) {
     267        return 0;
     268    }
     269    return ProcessTIBSel;
     270}
     271//******************************************************************************
    263272// Destroy the TIB selector and memory for the current thread
    264273//******************************************************************************
    265 void DestroyTIB()
     274void WIN32API DestroyTIB()
    266275{
    267276 SHORT  orgtibsel;
Note: See TracChangeset for help on using the changeset viewer.