summaryrefslogtreecommitdiff
path: root/include/win/elf.h
blob: 5089ff6b0c512e59f7b928da77f93ca3d934ab85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This is an incomplete & imprecice implementation
// It defers to the open source freebsd-elf implementations.

// Since this is only intended for VC++ compilers
// use #pragma once instead of guard macros
#pragma once

#ifdef _MSC_VER // Only for cross compilation to windows

#include <inttypes.h>

#include "freebsd-elf_common.h"
#include "freebsd-elf32.h"
#include "freebsd-elf64.h"

#endif // _MSC_VER