mirror of
https://github.com/Obfuscator-Collections/VMProtect.git
synced 2025-01-27 07:59:28 +03:00
5ec92ee05e
Version 3.x.x
17 lines
256 B
C
17 lines
256 B
C
#pragma once
|
|
#ifndef UT_PCH
|
|
#define UT_PCH
|
|
|
|
#include "../core/precompiled.h"
|
|
|
|
#ifdef WIN
|
|
#include <windows.h>
|
|
#include <crtdbg.h> /* Heap verifying */
|
|
#elif MACOSX
|
|
#define __ICONS__
|
|
#include <Cocoa/Cocoa.h>
|
|
#endif
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#endif //UT_PCH
|