Changeset 3765 for trunk/src/kernel32/winimagepe2lx.cpp
- Timestamp:
- Jun 28, 2000, 8:08:36 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagepe2lx.cpp
r3433 r3765 1 /* $Id: winimagepe2lx.cpp,v 1.1 0 2000-04-19 22:16:49 birdExp $ */1 /* $Id: winimagepe2lx.cpp,v 1.11 2000-06-28 18:08:35 sandervl Exp $ */ 2 2 3 3 /* … … 174 174 * Read the PE section table the set the RVAs in paSections. 175 175 * Locate and set the entrypoint. 176 * Locate the resource directory (if any). (pRes Dir, ulRVAResourceSection)176 * Locate the resource directory (if any). (pResRootDir, ulRVAResourceSection) 177 177 * TLS - FIXME! 178 178 * @status completely implemented. … … 259 259 { 260 260 ulRVAResourceSection = pNtHdrs->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_RESOURCE].VirtualAddress; 261 pRes Dir = (PIMAGE_RESOURCE_DIRECTORY)getPointerFromRVA(ulRVAResourceSection);261 pResRootDir = (PIMAGE_RESOURCE_DIRECTORY)getPointerFromRVA(ulRVAResourceSection); 262 262 } 263 263
Note:
See TracChangeset
for help on using the changeset viewer.