This commit is contained in:
Nishi 2026-01-12 05:33:04 +09:00
commit a310325a61
Signed by: nishi
GPG key ID: 27EF69B208EB9343
4 changed files with 15 additions and 15 deletions

View file

@ -7,10 +7,6 @@
#include <stdarg.h>
#include <math.h>
#ifdef _GEARSRC
#include <gbnet.h>
#endif
#if defined(_GEARSRC) && defined(_WIN32)
#define GSDECL extern __declspec(dllexport)
#elif defined(_WIN32)

View file

@ -4,15 +4,15 @@
#include <GearSrc/MachDep.h>
#if defined(_MSC_VER) || defined(__WATCOMC__)
typedef __int8_t GSI8;
typedef __int16_t GSI16;
typedef __int32_t GSI32;
typedef __int64_t GSI64;
typedef __int8 GSI8;
typedef __int16 GSI16;
typedef __int32 GSI32;
typedef __int64 GSI64;
typedef unsigned __int8_t GSU8;
typedef unsigned __int16_t GSU16;
typedef unsigned __int32_t GSU32;
typedef unsigned __int64_t GSU64;
typedef unsigned __int8 GSU8;
typedef unsigned __int16 GSU16;
typedef unsigned __int32 GSU32;
typedef unsigned __int64 GSU64;
#elif __STDC_VERSION__ >= 199901L
#include <stdint.h>