mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 05:51:09 +00:00
10 lines
208 B
C
10 lines
208 B
C
#ifndef __I_INPUT_H__
|
|
#define __I_INPUT_H__
|
|
|
|
void I_PutInClipboard (const char *str);
|
|
FString I_GetFromClipboard (bool use_primary_selection);
|
|
void I_SetMouseCapture();
|
|
void I_ReleaseMouseCapture();
|
|
|
|
#endif
|
|
|