engine: client: fixed compilation errors on Android

This commit is contained in:
SNMetamorph
2022-05-02 03:29:24 +03:00
committed by a1batross
parent 974f0787a4
commit 641f0632ef
3 changed files with 20 additions and 4 deletions
+14 -2
View File
@@ -776,17 +776,29 @@ void Platform_ShellExecute( const char *path, const char *parms )
// no need to free jstr
}
void Platform_GetClipboardText( char *buffer, size_t size )
int Platform_GetClipboardText( char *buffer, size_t size )
{
// stub
if( size ) buffer[0] = 0;
return 0;
}
void Platform_SetClipboardText( const char *buffer, size_t size )
void Platform_SetClipboardText( const char *buffer )
{
// stub
}
void Platform_SetCursorType( VGUI_DefaultCursor cursor )
{
// stub
}
key_modifier_t Platform_GetKeyModifiers( void )
{
// stub
return KeyModifier_None;
}
void Platform_PreCreateMove( void )
{
// stub