Ignore:
Timestamp:
May 2, 2000, 10:53:15 PM (25 years ago)
Author:
sandervl
Message:

added exception stack dump code; GetLocaleInfoA fixes

File:
1 edited

Legend:

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

    r3160 r3483  
    1 /* $Id: windllbase.cpp,v 1.12 2000-03-18 19:49:44 sandervl Exp $ */
     1/* $Id: windllbase.cpp,v 1.13 2000-05-02 20:53:14 sandervl Exp $ */
    22
    33/*
     
    752752//******************************************************************************
    753753//******************************************************************************
     754Win32DllBase *Win32DllBase::findModuleByAddr(ULONG address)
     755{
     756   dlllistmutex.enter();
     757
     758   Win32DllBase *mod = Win32DllBase::head;
     759   while(mod != NULL) {
     760        dbgCheckObj(mod);
     761        if(mod->insideModule(address)) {
     762                dlllistmutex.leave();
     763                return(mod);
     764        }
     765        mod = mod->next;
     766   }
     767   dlllistmutex.leave();
     768   return(NULL);
     769}
     770//******************************************************************************
     771//******************************************************************************
    754772BOOL Win32DllBase::isDll()
    755773{
Note: See TracChangeset for help on using the changeset viewer.