engine: client: made pfnSPR_Load and pfnSPR_Frames functions as exported

This commit is contained in:
SNMetamorph 2021-07-31 14:16:34 +04:00 committed by Alibek Omarov #SupportRMS
parent c4ef42009c
commit 8c351d9255
2 changed files with 3 additions and 3 deletions

View File

@ -1329,7 +1329,7 @@ pfnSPR_Load
=========
*/
HSPRITE GAME_EXPORT pfnSPR_Load( const char *szPicName )
HSPRITE EXPORT pfnSPR_Load( const char *szPicName )
{
model_t *spr;
@ -1376,7 +1376,7 @@ pfnSPR_Frames
=========
*/
static int GAME_EXPORT pfnSPR_Frames( HSPRITE hPic )
int EXPORT pfnSPR_Frames( HSPRITE hPic )
{
int numFrames;

View File

@ -827,7 +827,7 @@ int CL_FindModelIndex( const char *m );
cl_entity_t *CL_GetLocalPlayer( void );
model_t *CL_LoadClientSprite( const char *filename );
model_t *CL_LoadModel( const char *modelname, int *index );
HSPRITE pfnSPR_Load( const char *szPicName );
HSPRITE EXPORT pfnSPR_Load( const char *szPicName );
HSPRITE pfnSPR_LoadExt( const char *szPicName, uint texFlags );
void PicAdjustSize( float *x, float *y, float *w, float *h );
int CL_GetScreenInfo( SCREENINFO *pscrinfo );