mirror of
https://github.com/Obfuscator-Collections/VMProtect.git
synced 2026-08-31 14:44:42 +03:00
first commit
Version 3.x.x
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#pragma once
|
||||
#ifndef SDK_PCH
|
||||
#define SDK_PCH
|
||||
|
||||
#ifdef __unix__
|
||||
#ifdef __i386__
|
||||
__asm__(".symver memcpy,memcpy@GLIBC_2.0");
|
||||
#else
|
||||
__asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "../runtime/precommon.h"
|
||||
|
||||
#ifdef VMP_GNU
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <ctype.h>
|
||||
#include <time.h>
|
||||
#elif !defined(WIN_DRIVER)
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <sys/syslimits.h>
|
||||
#include <mach/mach_time.h>
|
||||
#include <mach-o/dyld.h>
|
||||
#endif
|
||||
|
||||
#endif //SDK_PCH
|
||||
Reference in New Issue
Block a user