mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +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,8 +25,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#ifndef __funct_h__
|
||||
#define __funct_h__
|
||||
|
||||
#ifndef __fastcall
|
||||
#define __fastcall __attribute__((fastcall))
|
||||
#ifndef _MSC_VER
|
||||
#ifdef __GNUC__
|
||||
#ifndef __fastcall
|
||||
#define __fastcall __attribute__((fastcall))
|
||||
#endif
|
||||
#else
|
||||
#define __fastcall
|
||||
#endif
|
||||
#endif
|
||||
|
||||
extern void sendscore(const char *s);
|
||||
|
@ -119,7 +125,7 @@ extern int G_GetAngleDelta(int a,int na);
|
|||
extern void A_GetZLimits(int iActor);
|
||||
extern void A_Fall(int iActor);
|
||||
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 overwritesprite(int thex,int they,int tilenum,int shade,int stat,int dapalnum);
|
||||
extern void gamenumber(int x,int y,int n,int s);
|
||||
|
|
Loading…
Reference in a new issue