author | Sam Lantinga |
Sun, 02 Feb 2014 00:53:27 -0800 | |
changeset 8149 | 681eb46b8ac4 |
parent 8093 | b43765095a6f |
child 9619 | b94b6d0bff0f |
permissions | -rw-r--r-- |
slouken@4499 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@8149 | 3 |
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org> |
slouken@4499 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
slouken@4499 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
slouken@4499 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
slouken@4499 | 20 |
*/ |
icculus@8093 | 21 |
#include "../../SDL_internal.h" |
slouken@4499 | 22 |
|
slouken@4499 | 23 |
#ifndef _SDL_cocoaclipboard_h |
slouken@4499 | 24 |
#define _SDL_cocoaclipboard_h |
slouken@4499 | 25 |
|
slouken@4503 | 26 |
/* Forward declaration */ |
slouken@4503 | 27 |
struct SDL_VideoData; |
slouken@4503 | 28 |
|
slouken@4499 | 29 |
extern int Cocoa_SetClipboardText(_THIS, const char *text); |
slouken@4499 | 30 |
extern char *Cocoa_GetClipboardText(_THIS); |
slouken@4499 | 31 |
extern SDL_bool Cocoa_HasClipboardText(_THIS); |
slouken@4503 | 32 |
extern void Cocoa_CheckClipboardUpdate(struct SDL_VideoData * data); |
slouken@4499 | 33 |
|
slouken@4499 | 34 |
#endif /* _SDL_cocoaclipboard_h */ |
slouken@4499 | 35 |
|
slouken@4499 | 36 |
/* vi: set ts=4 sw=4 expandtab: */ |