mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
Fix conflicting types on NXPrintf function family
This commit is contained in:
parent
136123eeb3
commit
e5b0473e4a
@ -153,6 +153,7 @@ typedef enum
|
|||||||
#include "com_strings.h"
|
#include "com_strings.h"
|
||||||
#include "crtlib.h"
|
#include "crtlib.h"
|
||||||
#include "cvar.h"
|
#include "cvar.h"
|
||||||
|
#include "con_nprint.h"
|
||||||
|
|
||||||
#define XASH_VERSION 0.99f // engine current version
|
#define XASH_VERSION 0.99f // engine current version
|
||||||
|
|
||||||
@ -977,9 +978,9 @@ wavdata_t *SCR_GetMovieInfo( void );
|
|||||||
void SCR_Shutdown( void );
|
void SCR_Shutdown( void );
|
||||||
void Con_Print( const char *txt );
|
void Con_Print( const char *txt );
|
||||||
void Con_NPrintf( int idx, char *fmt, ... );
|
void Con_NPrintf( int idx, char *fmt, ... );
|
||||||
void Con_NXPrintf( struct con_nprint_s *info, char *fmt, ... );
|
void Con_NXPrintf( con_nprint_t *info, char *fmt, ... );
|
||||||
void UI_NPrintf( int idx, char *fmt, ... );
|
void UI_NPrintf( int idx, char *fmt, ... );
|
||||||
void UI_NXPrintf( struct con_nprint_s *info, char *fmt, ... );
|
void UI_NXPrintf( con_nprint_t *info, char *fmt, ... );
|
||||||
char *Info_ValueForKey( const char *s, const char *key );
|
char *Info_ValueForKey( const char *s, const char *key );
|
||||||
void Info_RemovePrefixedKeys( char *start, char prefix );
|
void Info_RemovePrefixedKeys( char *start, char prefix );
|
||||||
qboolean Info_RemoveKey( char *s, const char *key );
|
qboolean Info_RemoveKey( char *s, const char *key );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user