mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-02 14:24:16 +01:00
9eb35c8830
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40163
28 lines
1.3 KiB
C
28 lines
1.3 KiB
C
// This file is used for backwards compatibility testing
|
|
// It allows us to test binary backwards compatibility by using an older include file HERE:
|
|
#include "sourcehook.h" // <-- here
|
|
// There. main.cpp which implements all of the following function is always usign sourcehook.h
|
|
// and the up-to-date sourcehook_impl.h/sourcehook.cpp. The tests use this file however.
|
|
// If the test needs an up-to-date version (like the recall test), it can simply
|
|
// #include "sourcehook.h" before including this, thus overriding our decision.
|
|
|
|
|
|
SourceHook::ISourceHook *Test_Factory();
|
|
void Test_Delete(SourceHook::ISourceHook *shptr);
|
|
|
|
struct CSHPtrAutoDestruction
|
|
{
|
|
SourceHook::ISourceHook *m_SHPtr;
|
|
CSHPtrAutoDestruction(SourceHook::ISourceHook *shptr) : m_SHPtr(shptr) {}
|
|
~CSHPtrAutoDestruction() { Test_Delete(m_SHPtr); }
|
|
};
|
|
|
|
#define GET_SHPTR(var) var = Test_Factory(); CSHPtrAutoDestruction ___autodestruction(var);
|
|
|
|
// Access to CSourceHookImpl functions
|
|
void Test_CompleteShutdown(SourceHook::ISourceHook *shptr);
|
|
bool Test_IsPluginInUse(SourceHook::ISourceHook *shptr, SourceHook::Plugin plug);
|
|
void Test_UnloadPlugin(SourceHook::ISourceHook *shptr, SourceHook::Plugin plug);
|
|
void Test_PausePlugin(SourceHook::ISourceHook *shptr, SourceHook::Plugin plug);
|
|
void Test_UnpausePlugin(SourceHook::ISourceHook *shptr, SourceHook::Plugin plug);
|