Added and working! Array module 1.65 is a go for release!

This commit is contained in:
Twilight Suzuka
2006-01-07 04:36:12 +00:00
parent e8a4b46cc5
commit a3572f7206
121 changed files with 80794 additions and 0 deletions

31
dlls/arrayx/array.cpp Normal file
View File

@@ -0,0 +1,31 @@
#include "osdefs.h"
#include <string.h>
#include <extdll.h>
#include "amxxmodule.h"
#ifdef __WIN32__
#define JU_WIN
#endif
#define JUDYERROR_NOTEST 1
#include <Judy.h>
#include "element.h"
#include "CKeytable.h"
#include "CArray.h"
#include "CHashtable.h"
void OnAmxxAttach()
{
MF_AddNatives(array_exports);
MF_AddNatives(keytable_exports);
MF_AddNatives(hashtable_exports);
}
void OnAmxxDetach()
{
Delete_MasterArray();
Delete_MasterKeytable();
Delete_MasterHashtable();
}