okay removed old forward stuff why was this defaulted?!

This commit is contained in:
David Anderson
2005-08-01 03:05:53 +00:00
parent 7605abc929
commit 4fe39dd5cc
10 changed files with 17 additions and 141 deletions

View File

@ -160,31 +160,5 @@ public:
void Init();
};
#ifdef FORWARD_OLD_SYSTEM
// *****************************************************
// class Forward
// *****************************************************
class Forward
{
struct AmxCall {
AMX *amx;
int iFunctionIdx;
AmxCall* next;
AmxCall( AMX *a , int i, AmxCall* n ): amx(a), iFunctionIdx(i), next(n) {}
} *head;
public:
Forward() { head = 0; }
~Forward() { clear(); }
void clear();
void put( AMX *a , int i );
void exec(int p1,int p2,int p3,int p4,int p5,int p6);
void exec(int p1,int p2,int p3,int p4,int p5);
void exec(int p1,int p2,int p3);
void exec(int p1,int p2);
};
#endif
#endif // CMISC_H