Fix compiling on Linux.

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@347 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
arcum42 2008-11-20 01:28:33 +00:00 committed by Gregory Hainaut
parent 20a69d222e
commit 32ccde667d
2 changed files with 5 additions and 4 deletions

View File

@ -89,6 +89,7 @@ typedef union _LARGE_INTEGER
long long QuadPart;
} LARGE_INTEGER;
#define _inline __inline__ __attribute__((unused))
#define __fastcall __attribute__((fastcall))
#endif
#if defined(__MINGW32__)

View File

@ -55,9 +55,9 @@ int psxRcntFreeze(gzFile f, int Mode);
void psxVBlankStart();
void psxVBlankEnd();
void psxCheckStartGate16(int counter);
void psxCheckEndGate16(int counter);
void psxCheckStartGate32(int counter);
void psxCheckEndGate32(int counter);
void psxCheckStartGate16(int i);
void psxCheckEndGate16(int i);
static void psxCheckStartGate32(int i);
static void psxCheckEndGate32(int i);
#endif /* __PSXCOUNTERS_H__ */