mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
engine: client: bring back NetAPI infostring options, as they conform to the API definitions
This commit is contained in:
parent
8961e37d7c
commit
377dd9a255
@ -3466,6 +3466,39 @@ static int GAME_EXPORT NetAPI_CompareAdr( netadr_t *a, netadr_t *b )
|
|||||||
return NET_CompareAdr( *a, *b );
|
return NET_CompareAdr( *a, *b );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
=================
|
||||||
|
NetAPI_StringToAdr
|
||||||
|
|
||||||
|
=================
|
||||||
|
*/
|
||||||
|
static int GAME_EXPORT NetAPI_StringToAdr( char *s, netadr_t *a )
|
||||||
|
{
|
||||||
|
return NET_StringToAdr( s, a );
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
=================
|
||||||
|
NetAPI_ValueForKey
|
||||||
|
|
||||||
|
=================
|
||||||
|
*/
|
||||||
|
static const char * GAME_EXPORT NetAPI_ValueForKey( const char *s, const char *key )
|
||||||
|
{
|
||||||
|
return Info_ValueForKey( s, key );
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
=================
|
||||||
|
NetAPI_RemoveKey
|
||||||
|
|
||||||
|
=================
|
||||||
|
*/
|
||||||
|
static void GAME_EXPORT NetAPI_RemoveKey( char *s, const char *key )
|
||||||
|
{
|
||||||
|
Info_RemoveKey( s, key );
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
=================
|
=================
|
||||||
NetAPI_SetValueForKey
|
NetAPI_SetValueForKey
|
||||||
@ -3666,9 +3699,9 @@ static net_api_t gNetApi =
|
|||||||
NetAPI_CancelAllRequests,
|
NetAPI_CancelAllRequests,
|
||||||
NetAPI_AdrToString,
|
NetAPI_AdrToString,
|
||||||
NetAPI_CompareAdr,
|
NetAPI_CompareAdr,
|
||||||
NET_StringToAdr,
|
NetAPI_StringToAdr,
|
||||||
Info_ValueForKey,
|
NetAPI_ValueForKey,
|
||||||
Info_RemoveKey,
|
NetAPI_RemoveKey,
|
||||||
NetAPI_SetValueForKey,
|
NetAPI_SetValueForKey,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user