mirror of
https://github.com/rehlds/rehlds.git
synced 2025-01-01 01:25:38 +03:00
Added missing EXT_FUNC marks
This commit is contained in:
parent
9cbc891694
commit
131d43a15e
@ -961,7 +961,7 @@ edict_t* EXT_FUNC CreateNamedEntity(int className)
|
||||
}
|
||||
}
|
||||
|
||||
void PF_Remove_I(edict_t *ed)
|
||||
void EXT_FUNC PF_Remove_I(edict_t *ed)
|
||||
{
|
||||
g_RehldsHookchains.m_PF_Remove_I.callChain(PF_Remove_I_internal, ed);
|
||||
}
|
||||
@ -1182,7 +1182,7 @@ void EXT_FUNC EV_PlayReliableEvent_api(IGameClient *cl, int entindex, short unsi
|
||||
EV_PlayReliableEvent_internal(cl->GetClient(), entindex, eventindex, delay, pargs);
|
||||
}
|
||||
|
||||
void EV_PlayReliableEvent(client_t *cl, int entindex, short unsigned int eventindex, float delay, event_args_t *pargs)
|
||||
void EXT_FUNC EV_PlayReliableEvent(client_t *cl, int entindex, short unsigned int eventindex, float delay, event_args_t *pargs)
|
||||
{
|
||||
g_RehldsHookchains.m_EV_PlayReliableEvent.callChain(EV_PlayReliableEvent_api, GetRehldsApiClient(cl), entindex, eventindex, delay, pargs);
|
||||
}
|
||||
@ -2561,7 +2561,7 @@ const char* EXT_FUNC PF_GetPlayerAuthId(edict_t *e)
|
||||
return szAuthID[count];
|
||||
}
|
||||
|
||||
void PF_BuildSoundMsg_I(edict_t *entity, int channel, const char *sample, float volume, float attenuation, int fFlags, int pitch, int msg_dest, int msg_type, const float *pOrigin, edict_t *ed)
|
||||
void EXT_FUNC PF_BuildSoundMsg_I(edict_t *entity, int channel, const char *sample, float volume, float attenuation, int fFlags, int pitch, int msg_dest, int msg_type, const float *pOrigin, edict_t *ed)
|
||||
{
|
||||
g_RehldsHookchains.m_PF_BuildSoundMsg_I.callChain(PF_BuildSoundMsg_I_internal, entity, channel, sample, volume, attenuation, fFlags, pitch, msg_dest, msg_type, pOrigin, ed);
|
||||
}
|
||||
|
@ -868,7 +868,7 @@ int SV_HashString(const char *string, int iBounds)
|
||||
}
|
||||
|
||||
/* <a6ad2> ../engine/sv_main.c:1087 */
|
||||
int SV_LookupSoundIndex(const char *sample)
|
||||
int EXT_FUNC SV_LookupSoundIndex(const char *sample)
|
||||
{
|
||||
int index;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user