- Timestamp:
- Jun 1, 2001, 3:30:10 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagepeldr.cpp
r5848 r5850 1 /* $Id: winimagepeldr.cpp,v 1.78 2001-06-01 01:21:12 phaller Exp $ */2 3 1 /* 4 2 * Win32 PE loader Image base class … … 171 169 BOOL Win32PeLdrImage::init(ULONG reservedMem) 172 170 { 173 PERF_START(init)174 175 171 LPVOID win32file = NULL; 176 172 ULONG filesize, ulRead, ulNewPos; … … 655 651 } 656 652 } 657 658 PERF_ELAPSED(init, "Win32PeLdrImage::init", szFileName)659 660 653 661 654 return(TRUE); … … 1326 1319 BOOL Win32PeLdrImage::processExports(char *win32file) 1327 1320 { 1328 PERF_START(processexports)1329 1330 1321 IMAGE_SECTION_HEADER sh; 1331 1322 PIMAGE_EXPORT_DIRECTORY ped; … … 1397 1388 } 1398 1389 } 1399 1400 PERF_ELAPSED(processexports, "Win32PeLdrImage::processExports", getModuleName())1401 1390 1402 1391 return(TRUE); … … 1547 1536 Win32DllBase *Win32PeLdrImage::loadDll(char *pszCurModule) 1548 1537 { 1549 PERF_START(loaddll)1550 1551 1538 Win32DllBase *WinDll = NULL; 1552 1539 char modname[CCHMAXPATH]; … … 1637 1624 1638 1625 1639 PERF_ELAPSED(loaddll, "Win32PeLdrImage::loadDll", pszCurModule)1640 1641 1626 return WinDll; 1642 1627 } … … 1651 1636 BOOL Win32PeLdrImage::processImports(char *win32file) 1652 1637 { 1653 PERF_START(processimports)1654 1655 1638 PIMAGE_IMPORT_DESCRIPTOR pID; 1656 1639 IMAGE_SECTION_HEADER shID; … … 1877 1860 free(pszModules); 1878 1861 1879 PERF_ELAPSED(processimports, "Win32PeLdrImage::processImports", getModuleName())1880 1881 1862 return TRUE; 1882 1863 }
Note:
See TracChangeset
for help on using the changeset viewer.