engine: add safe ParseFile to client MobilityAPI
This commit is contained in:
parent
c3684109bf
commit
621399c49b
2 changed files with 9 additions and 1 deletions
|
@ -108,7 +108,8 @@ static mobile_engfuncs_t gpMobileEngfuncs =
|
||||||
pfnDrawScaledCharacter,
|
pfnDrawScaledCharacter,
|
||||||
Sys_Warn,
|
Sys_Warn,
|
||||||
pfnGetNativeObject,
|
pfnGetNativeObject,
|
||||||
ID_SetCustomClientID
|
ID_SetCustomClientID,
|
||||||
|
_COM_ParseFileSafe
|
||||||
};
|
};
|
||||||
|
|
||||||
qboolean Mobile_Init( void )
|
qboolean Mobile_Init( void )
|
||||||
|
|
|
@ -36,6 +36,10 @@ extern "C" {
|
||||||
#define TOUCH_FL_STROKE (1U << 8)
|
#define TOUCH_FL_STROKE (1U << 8)
|
||||||
#define TOUCH_FL_PRECISION (1U << 9)
|
#define TOUCH_FL_PRECISION (1U << 9)
|
||||||
|
|
||||||
|
// flags for COM_ParseFileSafe
|
||||||
|
#define PFILE_IGNOREBRACKET (1<<0)
|
||||||
|
#define PFILE_HANDLECOLON (1<<1)
|
||||||
|
|
||||||
typedef struct mobile_engfuncs_s
|
typedef struct mobile_engfuncs_s
|
||||||
{
|
{
|
||||||
// indicates version of API. Should be equal to MOBILITY_API_VERSION
|
// indicates version of API. Should be equal to MOBILITY_API_VERSION
|
||||||
|
@ -77,6 +81,9 @@ typedef struct mobile_engfuncs_s
|
||||||
void *(*pfnGetNativeObject)( const char *obj );
|
void *(*pfnGetNativeObject)( const char *obj );
|
||||||
|
|
||||||
void (*pfnSetCustomClientID)( const char *id );
|
void (*pfnSetCustomClientID)( const char *id );
|
||||||
|
|
||||||
|
// COM_ParseFile but with buffer size limit, len reports written size or -1 on overflow
|
||||||
|
char* (*pfnParseFile)( char *data, char *buf, const int size, unsigned int flags, int *len );
|
||||||
// To be continued...
|
// To be continued...
|
||||||
} mobile_engfuncs_t;
|
} mobile_engfuncs_t;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue