mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 14:00:43 +00:00
cf11cbdb30
SVN r4 (trunk)
19 lines
300 B
C
19 lines
300 B
C
#ifndef __I_INPUT_H__
|
|
#define __I_INPUT_H__
|
|
|
|
void I_PutInClipboard (const char *str);
|
|
char *I_GetFromClipboard ();
|
|
|
|
struct GUIDName
|
|
{
|
|
GUID ID;
|
|
char *Name;
|
|
};
|
|
|
|
extern TArray<GUIDName> JoystickNames;
|
|
extern char *JoyAxisNames[8];
|
|
|
|
extern void DI_EnumJoy ();
|
|
|
|
#endif
|
|
|