mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-10 18:17:32 -05:00
37 lines
330 B
C
37 lines
330 B
C
// in_null.c -- for systems without a mouse
|
|
|
|
#include "../client/client.h"
|
|
|
|
void IN_Init (void)
|
|
{
|
|
}
|
|
|
|
void IN_Shutdown (void)
|
|
{
|
|
}
|
|
|
|
void IN_Commands (void)
|
|
{
|
|
}
|
|
|
|
void IN_Frame (void)
|
|
{
|
|
}
|
|
|
|
void IN_Move (usercmd_t *cmd)
|
|
{
|
|
}
|
|
|
|
void IN_Activate (qboolean active)
|
|
{
|
|
}
|
|
|
|
void IN_ActivateMouse (void)
|
|
{
|
|
}
|
|
|
|
void IN_DeactivateMouse (void)
|
|
{
|
|
}
|
|
|