1
0
forked from 0ad/0ad
0ad/source/scripting/ScriptGlue.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

24 lines
510 B
C

#ifndef INCLUDED_SCRIPTGLUE
#define INCLUDED_SCRIPTGLUE
#include "ScriptingHost.h"
// referenced by ScriptingHost.cpp
extern JSFunctionSpec ScriptFunctionTable[];
extern JSPropertySpec ScriptGlobalTable[];
// dependencies (moved to header to avoid L4 warnings)
// .. from main.cpp:
extern int fps;
extern void kill_mainloop();
extern CStr g_CursorName;
extern void StartGame();
extern void EndGame();
// .. other
#if OS_WIN
extern int GetVRAMInfo(int&, int&);
#endif
#endif // #ifndef INCLUDED_SCRIPTGLUE