mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-27 23:25:41 +03:00
18 lines
394 B
C++
18 lines
394 B
C++
#pragma once
|
|
#ifdef _WIN32
|
|
|
|
#include "osconfig.h"
|
|
#include "memory.h"
|
|
#include "regamedll/platform.h"
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <unordered_map>
|
|
|
|
#define TESTSUITE_PROTOCOL_VERSION_MINOR 5
|
|
#define TESTSUITE_PROTOCOL_VERSION_MAJOR 0
|
|
|
|
void TestSuite_Init(const Module* engine, const Module* executable, const AddressRef* funcRefs);
|
|
|
|
#endif |