Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SDL_clipboard.h « SDL2 « include « sdlew « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61db474487e1824f2fc0b5d9b00f94fc01e3da3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

#ifndef _SDL_clipboard_h
#define _SDL_clipboard_h

#include "SDL_stdinc.h"

#include "begin_code.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef int SDLCALL tSDL_SetClipboardText(const char *text);

typedef char * SDLCALL tSDL_GetClipboardText(void);

typedef SDL_bool SDLCALL tSDL_HasClipboardText(void);

extern tSDL_SetClipboardText *SDL_SetClipboardText;
extern tSDL_GetClipboardText *SDL_GetClipboardText;
extern tSDL_HasClipboardText *SDL_HasClipboardText;

#ifdef __cplusplus
}
#endif
#include "close_code.h"

#endif