Initial commit.
This commit is contained in:
32
codemp/icarus/icarus.h
Normal file
32
codemp/icarus/icarus.h
Normal file
@@ -0,0 +1,32 @@
|
||||
// ICARUS Public Header File
|
||||
|
||||
#pragma warning ( disable : 4786 ) //NOTENOTE: STL Debug name length warning
|
||||
|
||||
#ifndef __ICARUS__
|
||||
#define __ICARUS__
|
||||
|
||||
#include "../game/g_public.h"
|
||||
|
||||
#pragma warning( disable : 4786 ) // identifier was truncated
|
||||
#pragma warning( disable : 4514 ) // unreferenced inline was removed
|
||||
#pragma warning( disable : 4710 ) // not inlined
|
||||
|
||||
#pragma warning( push, 3 ) //save current state and change to 3
|
||||
|
||||
#define STL_ITERATE( a, b ) for ( a = b.begin(); a != b.end(); a++ )
|
||||
#define STL_INSERT( a, b ) a.insert( a.end(), b );
|
||||
|
||||
#include "tokenizer.h"
|
||||
#include "blockstream.h"
|
||||
#include "interpreter.h"
|
||||
#include "sequencer.h"
|
||||
#include "taskmanager.h"
|
||||
#include "instance.h"
|
||||
|
||||
#pragma warning( pop ) //restore
|
||||
|
||||
|
||||
extern void *ICARUS_Malloc(int iSize);
|
||||
extern void ICARUS_Free(void *pMem);
|
||||
|
||||
#endif //__ICARUS__
|
||||
Reference in New Issue
Block a user