1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-12-03 15:24:15 +01:00
HLMetaModOfficial/sourcehook/test/testbail.h
Pavol Marko 1c1b3953a3 Added TestBail
--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4076
2005-05-27 21:39:30 +00:00

40 lines
679 B
C++

//////////////////////////////////////////////////////////////////////////
// Shared data for testbail
#include <string>
#include "sourcehook_impl.h"
#include "testevents.h"
#include <stdarg.h>
void ___TestBail2();
namespace
{
StateList g_States;
SourceHook::ISourceHook *g_SHPtr;
SourceHook::Plugin g_PLID;
MAKE_STATE(State_EatYams_Called);
MAKE_STATE(State_EatYams_Handler_Called);
class IGaben
{
public:
virtual void EatYams()
{
ADD_STATE(State_EatYams_Called);
}
};
SH_DECL_HOOK0_void(IGaben, EatYams, SH_NOATTRIB, 0);
void EatYams0_Handler()
{
ADD_STATE(State_EatYams_Handler_Called);
}
IGaben *g_Gabgab;
}
extern void *___testbail_gabgab;