* Replaced a bunch of inline and __inline with ID_INLINE

* Replaced a bunch of __i386__ with id386
* General tidy up of asm preprocessor decisions
* Removed C_ONLY from the dedicated server build
This commit is contained in:
Tim Angus 2005-11-04 22:32:00 +00:00
parent 857a5e264e
commit e4b7a04d5c
24 changed files with 506 additions and 795 deletions

View file

@ -80,7 +80,7 @@ enum {
RenderCompletedMsg = 2,
};
static /*inline*/ void MsgPortInit(MsgPort *port)
static /*ID_INLINE*/ void MsgPortInit(MsgPort *port)
{
#if USE_MACH_PORTS
port->nsPort = [[NSMachPort alloc] init];
@ -106,7 +106,7 @@ static /*inline*/ void MsgPortInit(MsgPort *port)
#endif
}
static /*inline*/ void _SendMsg(MsgPort *port, unsigned int msgCode, void *msgData,
static /*ID_INLINE*/ void _SendMsg(MsgPort *port, unsigned int msgCode, void *msgData,
const char *functionName, const char *portName, const char *msgName)
{
int rc;
@ -173,7 +173,7 @@ static /*inline*/ void _SendMsg(MsgPort *port, unsigned int msgCode, void *msgDa
#endif
}
static /*inline*/ void _WaitMsg(MsgPort *port, unsigned int *msgCode, void **msgData,
static /*ID_INLINE*/ void _WaitMsg(MsgPort *port, unsigned int *msgCode, void **msgData,
const char *functionName, const char *portName)
{
int rc;