assaultfish/engine/include/GearSrc/MachDep.h

18 lines
353 B
C
Raw Normal View History

2026-01-12 01:55:20 +09:00
#ifndef __GEARSRC_MACHDEP_H__
#define __GEARSRC_MACHDEP_H__
2026-01-09 00:40:51 +09:00
#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-12 01:55:20 +09:00
#if defined(_GEARSRC) && defined(_WIN32)
2026-01-12 01:54:35 +09:00
#define GSDECL extern __declspec(dllexport)
2026-01-09 00:40:51 +09:00
#elif defined(_WIN32)
2026-01-12 01:54:35 +09:00
#define GSDECL extern __declspec(dllimport)
2026-01-09 00:40:51 +09:00
#else
2026-01-12 01:54:35 +09:00
#define GSDECL extern
2026-01-09 00:40:51 +09:00
#endif
#endif