Home | History | Annotate | Download | only in Library

Lines Matching full:coff

2   Provides a service to retrieve the PE/COFF entry point from a PE/COFF image.

19 Retrieves and returns a pointer to the entry point to a PE/COFF image that has been loaded
20 into system memory with the PE/COFF Loader Library functions.
22 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry
23 point in EntryPoint. If the entry point could not be retrieved from the PE/COFF image, then
28 @param Pe32Data The pointer to the PE/COFF image that is loaded in system memory.
29 @param EntryPoint The pointer to entry point to the PE/COFF image to return.
32 @retval RETURN_INVALID_PARAMETER The entry point could not be found in the PE/COFF image.
43 Returns the machine type of a PE/COFF image.
45 Returns the machine type from the PE/COFF image specified by Pe32Data.
48 @param Pe32Data The pointer to the PE/COFF image that is loaded in system
61 Returns a pointer to the PDB file name for a PE/COFF image that has been
62 loaded into system memory with the PE/COFF Loader Library functions.
64 Returns the PDB file name for the PE/COFF image specified by Pe32Data. If
65 the PE/COFF image specified by Pe32Data is not a valid, then NULL is
66 returned. If the PE/COFF image specified by Pe32Data does not contain a
68 in the PE/COFF image specified by Pe32Data does not contain a PDB file name,
72 @param Pe32Data The pointer to the PE/COFF image that is loaded in system
75 @return The PDB file name for the PE/COFF image specified by Pe32Data, or NULL
87 Returns the size of the PE/COFF headers
89 Returns the size of the PE/COFF header specified by Pe32Data.
92 @param Pe32Data The pointer to the PE/COFF image that is loaded in system
95 @return Size of PE/COFF header in bytes, or zero if not a valid image.