2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-02-27 22:11:07 +03:00
rehlds/rehlds/testsuite/testsuite.h
2017-04-26 04:51:40 +04:00

18 lines
401 B
C++

#pragma once
#ifdef _WIN32
#include "osconfig.h"
#include "memory.h"
#include "rehlds/platform.h"
#include <string>
#include <iostream>
#include <fstream>
#include <unordered_map>
const int TESTSUITE_PROTOCOL_VERSION_MINOR = 5;
const int TESTSUITE_PROTOCOL_VERSION_MAJOR = 0;
void TestSuite_Init(const Module* engine, const Module* executable, const AddressRef* funcRefs);
#endif