mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-26 22:11:52 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
28 lines
573 B
C
28 lines
573 B
C
#pragma once
|
|
|
|
// unix_local.h: Linux-specific Quake3 header file
|
|
|
|
void Sys_QueEvent( int time, sysEventType_t type, int value, int value2, int ptrLength, void *ptr );
|
|
qboolean Sys_GetPacket ( netadr_t *net_from, msg_t *net_message );
|
|
|
|
// Input subsystem
|
|
|
|
void IN_Init (void);
|
|
void IN_Frame (void);
|
|
void IN_Shutdown (void);
|
|
|
|
|
|
void IN_JoyMove( void );
|
|
void IN_StartupJoystick( void );
|
|
|
|
// GL subsystem
|
|
qboolean QGL_Init( const char *dllname );
|
|
void QGL_EnableLogging( qboolean enable );
|
|
void QGL_Shutdown( void );
|
|
|
|
|
|
|
|
|
|
|
|
// bk001130 - win32
|
|
// void IN_JoystickCommands (void);
|