blob: 647bd7496f2307db22e125af49b9b3f44198aec7 [file] [log] [blame]
San Mehata430b2b2014-09-23 08:30:51 -07001/* Handle clipboard text and data in arbitrary formats */
2
3/* Miscellaneous defines */
4#define T(A, B, C, D) (int)((A<<24)|(B<<16)|(C<<8)|(D<<0))
5
6#ifdef __cplusplus
7extern "C" {
8#endif /* __cplusplus */
9
10extern int init_scrap(void);
11extern int lost_scrap(void);
12extern void put_scrap(int type, int srclen, const char *src);
13extern void get_scrap(int type, int *dstlen, char **dst);
14extern int clipboard_filter(const SDL_Event *event);
15
16#ifdef __cplusplus
17}
18#endif /* __cplusplus */