mirror of
https://github.com/DrBeef/Raze.git
synced 2025-03-12 03:51:57 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@1184 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5b08f05476
commit
4516eb5ec8
1 changed files with 9 additions and 3 deletions
|
@ -25,9 +25,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#ifndef __funct_h__
|
#ifndef __funct_h__
|
||||||
#define __funct_h__
|
#define __funct_h__
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
|
#ifdef __GNUC__
|
||||||
#ifndef __fastcall
|
#ifndef __fastcall
|
||||||
#define __fastcall __attribute__((fastcall))
|
#define __fastcall __attribute__((fastcall))
|
||||||
#endif
|
#endif
|
||||||
|
#else
|
||||||
|
#define __fastcall
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
extern void sendscore(const char *s);
|
extern void sendscore(const char *s);
|
||||||
extern void S_SoundStartup(void);
|
extern void S_SoundStartup(void);
|
||||||
|
@ -119,7 +125,7 @@ extern int G_GetAngleDelta(int a,int na);
|
||||||
extern void A_GetZLimits(int iActor);
|
extern void A_GetZLimits(int iActor);
|
||||||
extern void A_Fall(int iActor);
|
extern void A_Fall(int iActor);
|
||||||
extern void C_Compile(const char *fn);
|
extern void C_Compile(const char *fn);
|
||||||
extern __fastcall int A_GetFurthestAngle(int iActor,int angs);
|
extern int __fastcall A_GetFurthestAngle(int iActor,int angs);
|
||||||
extern void A_Execute(int iActor,int iPlayer,int lDist);
|
extern void A_Execute(int iActor,int iPlayer,int lDist);
|
||||||
extern void overwritesprite(int thex,int they,int tilenum,int shade,int stat,int dapalnum);
|
extern void overwritesprite(int thex,int they,int tilenum,int shade,int stat,int dapalnum);
|
||||||
extern void gamenumber(int x,int y,int n,int s);
|
extern void gamenumber(int x,int y,int n,int s);
|
||||||
|
|
Loading…
Reference in a new issue