server/src/eressea.h

15 lines
238 B
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
#ifndef H_ERESSEA_LIB
#define H_ERESSEA_LIB
#ifdef __cplusplus
extern "C" {
#endif
2011-03-07 08:02:35 +01:00
int eressea_init(void);
void eressea_done(void);
int eressea_run(const char *luafile, const char *entry_point);
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif