1 
2 #define THIS_IS_THE_PLUGIN
3 #include "plugin/agsplugin.h"
4 
AGS_EngineStartup(IAGSEngine * lpEngine)5 void AGS_EngineStartup(IAGSEngine *lpEngine)
6 {
7 }
8 
AGS_EngineShutdown()9 void AGS_EngineShutdown()
10 {
11 }
12 
AGS_EngineOnEvent(int event,int data)13 int AGS_EngineOnEvent(int event, int data)
14 {
15   return 0;
16 }
17 
AGS_EngineDebugHook(const char * scriptName,int lineNum,int reserved)18 int AGS_EngineDebugHook(const char *scriptName, int lineNum, int reserved)
19 {
20   return 0;
21 }
22 
AGS_EngineInitGfx(const char * driverID,void * data)23 void AGS_EngineInitGfx(const char *driverID, void *data)
24 {
25 }
26