assaultfish/engine/include/GearBox/MachDep.h

22 lines
396 B
C
Raw Normal View History

2026-01-09 00:40:51 +09:00
#ifndef __GEARBOX_MACHDEP_H__
#define __GEARBOX_MACHDEP_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
2026-01-09 03:38:29 +09:00
#include <math.h>
2026-01-09 00:40:51 +09:00
2026-01-09 03:38:29 +09:00
#ifdef _GEARBOX
#include <gbnet.h>
#endif
#if defined(_GEARBOX) && defined(_WIN32)
2026-01-09 00:40:51 +09:00
#define GBDECL extern __declspec(dllexport)
#elif defined(_WIN32)
#define GBDECL extern __declspec(dllimport)
#else
#define GBDECL extern
#endif
#endif