Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c
- Timestamp:
- Oct 29, 2015 4:30:44 AM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
- Property svn:mergeinfo changed
/vendor/edk2/current merged: 103769-103776
- Property svn:mergeinfo changed
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c
r48674 r58466 1 1 /** @file 2 Provides the services to get the entry point to a PE/COFF image that has either been 2 Provides the services to get the entry point to a PE/COFF image that has either been 3 3 loaded into memory or is executing at it's linked address. 4 4 … … 129 129 /** 130 130 Returns a pointer to the PDB file name for a PE/COFF image that has been 131 loaded into system memory with the PE/COFF Loader Library functions. 131 loaded into system memory with the PE/COFF Loader Library functions. 132 132 133 133 Returns the PDB file name for the PE/COFF image specified by Pe32Data. If … … 247 247 // 248 248 // Scan the directory to find the debug entry. 249 // 249 // 250 250 for (DirCount = 0; DirCount < DirectoryEntry->Size; DirCount += sizeof (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY), DebugEntry++) { 251 251 if (DebugEntry->Type == EFI_IMAGE_DEBUG_TYPE_CODEVIEW) { … … 292 292 293 293 ASSERT (Pe32Data != NULL); 294 294 295 295 DosHdr = (EFI_IMAGE_DOS_HEADER *)Pe32Data; 296 296 if (DosHdr->e_magic == EFI_IMAGE_DOS_SIGNATURE) {
Note:
See TracChangeset
for help on using the changeset viewer.