aboutsummaryrefslogtreecommitdiff
path: root/source2-basehook/Base.hpp
blob: 1190afd34b324ade99f3232b5ce8827e4e39f94f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Include.hpp"

namespace Base
{
    typedef void* (*CreateInterfaceFn)(const char* pName, int* pReturnCode);
    template<class Template>
    Template* GetInterface(const std::string ModuleName, const std::string InterfaceName);
	void InitInterfaces();
	void InitHooks();
}