mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
22 lines
334 B
C++
22 lines
334 B
C++
#if defined(WIN32) || defined(_MSC_VER)
|
|
#include <windows.h>
|
|
#include <WinBase.h>
|
|
#include <minwindef.h>
|
|
#endif
|
|
|
|
#if defined(__linux__)
|
|
#include <elf.h>
|
|
#include <link.h>
|
|
#endif
|
|
|
|
#if defined(__APPLE__)
|
|
#include <mach-o/dyld.h>
|
|
#include <mach-o/dyld_images.h>
|
|
#endif
|
|
|
|
#include "LIEF/LIEF.hpp"
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|