mirror of https://github.com/acidanthera/audk.git
Minor update to fix typos and update the file to use \r\n as end of line
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9901 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
7e35214b7f
commit
cb6cb44c1a
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Provides a service to retrieve the PE/COFF entry point from a PE/COFF image.
|
Provides a service to retrieve the PE/COFF entry point from a PE/COFF image.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2008, Intel Corporation
|
Copyright (c) 2006 - 2010, Intel Corporation
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -48,7 +48,7 @@ PeCoffLoaderGetEntryPoint (
|
||||||
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
||||||
memory.
|
memory.
|
||||||
|
|
||||||
@return Machine type or zero if not a valid iamge.
|
@return Machine type or zero if not a valid image.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINT16
|
UINT16
|
||||||
|
@ -92,13 +92,13 @@ PeCoffLoaderGetPdbPointer (
|
||||||
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
||||||
memory.
|
memory.
|
||||||
|
|
||||||
@return Size of PE/COFF header in bytes or zero if not a valid iamge.
|
@return Size of PE/COFF header in bytes or zero if not a valid image.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINT32
|
UINT32
|
||||||
EFIAPI
|
EFIAPI
|
||||||
PeCoffGetSizeOfHeaders (
|
PeCoffGetSizeOfHeaders (
|
||||||
IN VOID *Pe32Data
|
IN VOID *Pe32Data
|
||||||
);
|
);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -90,7 +90,7 @@ PeCoffLoaderGetEntryPoint (
|
||||||
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
||||||
memory.
|
memory.
|
||||||
|
|
||||||
@return Machine type or zero if not a valid iamge.
|
@return Machine type or zero if not a valid image.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINT16
|
UINT16
|
||||||
|
@ -277,7 +277,7 @@ PeCoffLoaderGetPdbPointer (
|
||||||
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
||||||
memory.
|
memory.
|
||||||
|
|
||||||
@return Size of PE/COFF header in bytes or zero if not a valid iamge.
|
@return Size of PE/COFF header in bytes or zero if not a valid image.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINT32
|
UINT32
|
||||||
|
@ -306,7 +306,7 @@ PeCoffGetSizeOfHeaders (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Hdr.Te->Signature == EFI_TE_IMAGE_HEADER_SIGNATURE) {
|
if (Hdr.Te->Signature == EFI_TE_IMAGE_HEADER_SIGNATURE) {
|
||||||
SizeOfHeaders = sizeof (EFI_TE_IMAGE_HEADER) + (UINTN)Hdr.Te->BaseOfCode - (UINTN)Hdr.Te->StrippedSize;
|
SizeOfHeaders = sizeof (EFI_TE_IMAGE_HEADER) + (UINTN)Hdr.Te->BaseOfCode - (UINTN)Hdr.Te->StrippedSize;
|
||||||
} else if (Hdr.Pe32->Signature == EFI_IMAGE_NT_SIGNATURE) {
|
} else if (Hdr.Pe32->Signature == EFI_IMAGE_NT_SIGNATURE) {
|
||||||
SizeOfHeaders = Hdr.Pe32->OptionalHeader.SizeOfHeaders;
|
SizeOfHeaders = Hdr.Pe32->OptionalHeader.SizeOfHeaders;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue