- Timestamp:
- Aug 23, 1999, 8:06:45 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windll.cpp
r651 r653 1 /* $Id: windll.cpp,v 1.1 4 1999-08-23 17:02:35sandervl Exp $ */1 /* $Id: windll.cpp,v 1.15 1999-08-23 18:06:26 sandervl Exp $ */ 2 2 3 3 /* … … 81 81 dprintf(("Win32Dll::Win32Dll %s %s loaded by %s", szFileName, szModule, 82 82 (parentImage) ? parentImage->getModuleName() : "Unknown")); 83 83 84 } 84 85 //****************************************************************************** … … 549 550 //****************************************************************************** 550 551 //****************************************************************************** 552 BOOL Win32Dll::isDll() 553 { 554 return TRUE; 555 } 556 //****************************************************************************** 557 //****************************************************************************** 551 558 Win32Dll *Win32Dll::head = NULL; -
trunk/src/kernel32/winexe.cpp
r617 r653 1 /* $Id: winexe.cpp,v 1.1 0 1999-08-22 11:11:11sandervl Exp $ */1 /* $Id: winexe.cpp,v 1.11 1999-08-23 18:06:27 sandervl Exp $ */ 2 2 3 3 /* … … 116 116 //****************************************************************************** 117 117 //****************************************************************************** 118 118 BOOL Win32Exe::isDll() 119 { 120 return FALSE; 121 } 122 //****************************************************************************** 123 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.