1 /* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
2 
3 #ifndef _INTERFACE_DEFINES_H
4 #define _INTERFACE_DEFINES_H
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 #define JAVA_SKIRMISH_AI_PROPERTY_CLASS_NAME "className"
11 
12 #define MY_LOG_FILE       "interface-log.txt"
13 #define JAVA_AI_INTERFACE_LIBRARY_FILE_NAME "AIInterface.jar"
14 #define NATIVE_LIBS_DIR   "lib"
15 #define JRE_LOCATION_FILE "jre-location.txt"
16 
17 #include <stddef.h> // for NULL
18 
19 #ifdef __cplusplus
20 } // extern "C"
21 #endif
22 
23 #endif // _INTERFACE_DEFINES_H
24