mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-14 14:21:17 +00:00
20 lines
360 B
C
20 lines
360 B
C
|
#ifndef OPNMIDI_FMGEN_COMPILER_H
|
||
|
#define OPNMIDI_FMGEN_COMPILER_H
|
||
|
|
||
|
#if defined(_MSC_VER) && !defined(FASTCALL)
|
||
|
#define FASTCALL __fastcall
|
||
|
#elif defined(__GNUC__) && !defined(FASTCALL)
|
||
|
#define FASTCALL __attribute__((regparm(2)))
|
||
|
#endif
|
||
|
|
||
|
#ifndef FASTCALL
|
||
|
#define FASTCALL
|
||
|
#endif
|
||
|
#define SOUNDCALL FASTCALL
|
||
|
|
||
|
#ifndef MAX_PATH
|
||
|
#define MAX_PATH 256
|
||
|
#endif
|
||
|
|
||
|
#endif
|