1/*
2 * Copyright 2013-2014, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *  Alexander von Gluck IV, <kallisti5@unixzen.com>
7 */
8#ifndef PE_H
9#define PE_H
10
11
12#include <OS.h>
13
14#include <syscalls.h>
15#include <util/kernel_cpp.h>
16
17#include "pe_common.h"
18
19
20status_t pe_verify_header(void *header, size_t length);
21
22
23#endif /* PE_H */
24