18 lines
353 B
C
18 lines
353 B
C
#ifndef __GEARSRC_MACHDEP_H__
|
|
#define __GEARSRC_MACHDEP_H__
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <math.h>
|
|
|
|
#if defined(_GEARSRC) && defined(_WIN32)
|
|
#define GSDECL extern __declspec(dllexport)
|
|
#elif defined(_WIN32)
|
|
#define GSDECL extern __declspec(dllimport)
|
|
#else
|
|
#define GSDECL extern
|
|
#endif
|
|
|
|
#endif
|