rename
This commit is contained in:
parent
472e21e389
commit
2d6ed53abc
56 changed files with 746 additions and 746 deletions
22
engine/include/GearSrc/MachDep.h
Normal file
22
engine/include/GearSrc/MachDep.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef __GEARBOX_MACHDEP_H__
|
||||
#define __GEARBOX_MACHDEP_H__
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
#include <math.h>
|
||||
|
||||
#ifdef _GEARBOX
|
||||
#include <gbnet.h>
|
||||
#endif
|
||||
|
||||
#if defined(_GEARBOX) && defined(_WIN32)
|
||||
#define GSDECL extern __declspec(dllexport)
|
||||
#elif defined(_WIN32)
|
||||
#define GSDECL extern __declspec(dllimport)
|
||||
#else
|
||||
#define GSDECL extern
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue