Changeset 5850 for trunk/src


Ignore:
Timestamp:
Jun 1, 2001, 3:30:10 AM (24 years ago)
Author:
phaller
Message:

.

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 
    31/*
    42 * Win32 PE loader Image base class
     
    171169BOOL Win32PeLdrImage::init(ULONG reservedMem)
    172170{
    173     PERF_START(init)
    174 
    175171 LPVOID win32file = NULL;
    176172 ULONG  filesize, ulRead, ulNewPos;
     
    655651        }
    656652    }
    657 
    658     PERF_ELAPSED(init, "Win32PeLdrImage::init", szFileName)
    659 
    660653
    661654    return(TRUE);
     
    13261319BOOL Win32PeLdrImage::processExports(char *win32file)
    13271320{
    1328   PERF_START(processexports)
    1329 
    13301321  IMAGE_SECTION_HEADER    sh;
    13311322  PIMAGE_EXPORT_DIRECTORY ped;
     
    13971388    }
    13981389  }
    1399 
    1400   PERF_ELAPSED(processexports, "Win32PeLdrImage::processExports", getModuleName())
    14011390
    14021391  return(TRUE);
     
    15471536Win32DllBase *Win32PeLdrImage::loadDll(char *pszCurModule)
    15481537{
    1549     PERF_START(loaddll)
    1550 
    15511538 Win32DllBase *WinDll = NULL;
    15521539 char modname[CCHMAXPATH];
     
    16371624
    16381625
    1639     PERF_ELAPSED(loaddll, "Win32PeLdrImage::loadDll", pszCurModule)
    1640 
    16411626    return WinDll;
    16421627}
     
    16511636BOOL Win32PeLdrImage::processImports(char *win32file)
    16521637{
    1653     PERF_START(processimports)
    1654 
    16551638 PIMAGE_IMPORT_DESCRIPTOR pID;
    16561639 IMAGE_SECTION_HEADER     shID;
     
    18771860  free(pszModules);
    18781861
    1879   PERF_ELAPSED(processimports, "Win32PeLdrImage::processImports", getModuleName())
    1880 
    18811862  return TRUE;
    18821863}
Note: See TracChangeset for help on using the changeset viewer.