mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-07 21:41:25 +00:00
035edb32ad
console under Linux. - Added middle mouse button selection pasting for X systems. SVN r1420 (trunk)
19 lines
328 B
C
19 lines
328 B
C
#ifndef __I_INPUT_H__
|
|
#define __I_INPUT_H__
|
|
|
|
void I_PutInClipboard (const char *str);
|
|
FString I_GetFromClipboard (bool use_primary_selection);
|
|
|
|
struct GUIDName
|
|
{
|
|
GUID ID;
|
|
char *Name;
|
|
};
|
|
|
|
extern TArray<GUIDName> JoystickNames;
|
|
extern char *JoyAxisNames[8];
|
|
|
|
extern void DI_EnumJoy ();
|
|
|
|
#endif
|
|
|