android: initial port

This commit is contained in:
Alibek Omarov
2019-05-02 18:07:03 +03:00
parent 1a700fd06b
commit 3fef353291
18 changed files with 1360 additions and 13 deletions
+1 -1
View File
@@ -492,7 +492,7 @@ int Cmd_AddGameUICommand( const char *cmd_name, xcommand_t function );
int Cmd_AddRefCommand( const char *cmd_name, xcommand_t function, const char *description );
void Cmd_RemoveCommand( const char *cmd_name );
qboolean Cmd_Exists( const char *cmd_name );
void Cmd_LookupCmds( char *buffer, void *ptr, setpair_t callback );
void Cmd_LookupCmds( void *buffer, void *ptr, setpair_t callback );
qboolean Cmd_GetMapList( const char *s, char *completedname, int length );
qboolean Cmd_GetDemoList( const char *s, char *completedname, int length );
qboolean Cmd_GetMovieList( const char *s, char *completedname, int length );
+1 -1
View File
@@ -93,7 +93,7 @@ write screenshot into clipboard
*/
void Sys_SetClipboardData( const byte *buffer, size_t size )
{
Platform_SetClipboardText( (char *)buffer, size );
Platform_SetClipboardText( buffer, size );
}
#endif // XASH_DEDICATED