Changeset 3483 for trunk/src/kernel32/windllbase.cpp
- Timestamp:
- May 2, 2000, 10:53:15 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windllbase.cpp
r3160 r3483 1 /* $Id: windllbase.cpp,v 1.1 2 2000-03-18 19:49:44 sandervl Exp $ */1 /* $Id: windllbase.cpp,v 1.13 2000-05-02 20:53:14 sandervl Exp $ */ 2 2 3 3 /* … … 752 752 //****************************************************************************** 753 753 //****************************************************************************** 754 Win32DllBase *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 //****************************************************************************** 754 772 BOOL Win32DllBase::isDll() 755 773 {
Note:
See TracChangeset
for help on using the changeset viewer.