2026-01-12 01:55:20 +09:00
|
|
|
#ifndef __GEARSRC_SERVER_H__
|
|
|
|
|
#define __GEARSRC_SERVER_H__
|
2026-01-12 01:54:35 +09:00
|
|
|
|
|
|
|
|
#include <GearSrc/MachDep.h>
|
|
|
|
|
#include <GearSrc/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
GSDECL GSServer GSServerCreate(GSEngine engine);
|
|
|
|
|
GSDECL void GSServerDestroy(GSServer server);
|
|
|
|
|
GSDECL void GSServerStep(GSServer server);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|