summaryrefslogtreecommitdiffhomepage
path: root/src/headers/pe_get_image_opt_hdr_addr.c
blob: 5af694ce0438a97d9585404d1b07f339a62544ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*****************************************************************************/
/*  pemagination: a (virtual) tour into portable bits and executable bytes   */
/*  Copyright (C) 2013--2020  SysDeer Technologies, LLC                      */
/*  Released under GPLv2 and GPLv3; see COPYING.PEMAGINE.                    */
/*****************************************************************************/

#include <psxtypes/psxtypes.h>
#include <pemagine/pe_structs.h>
#include <pemagine/pemagine.h>

pe_api
union pe_raw_opt_hdr * pe_get_image_opt_hdr_addr(const void * base)
{
	struct pe_raw_coff_image_hdr *	coff;
	void *				addr;

	if (!(coff = pe_get_image_coff_hdr_addr(base)))
		return 0;

	addr = pe_va_from_rva(coff,sizeof(*coff));
	return (union pe_raw_opt_hdr *)addr;
}