SDL_clipboard.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_clipboard.h
  20. *
  21. * Include file for SDL clipboard handling
  22. */
  23. #ifndef _SDL_clipboard_h
  24. #define _SDL_clipboard_h
  25. #include "SDL_stdinc.h"
  26. #include "begin_code.h"
  27. /* Set up for C function definitions, even when using C++ */
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. /* Function prototypes */
  32. /**
  33. * \brief Put UTF-8 text into the clipboard
  34. *
  35. * \sa SDL_GetClipboardText()
  36. */
  37. extern DECLSPEC int SDLCALL SDL_SetClipboardText(const char *text);
  38. /**
  39. * \brief Get UTF-8 text from the clipboard, which must be freed with SDL_free()
  40. *
  41. * \sa SDL_SetClipboardText()
  42. */
  43. extern DECLSPEC char * SDLCALL SDL_GetClipboardText(void);
  44. /**
  45. * \brief Returns a flag indicating whether the clipboard exists and contains a text string that is non-empty
  46. *
  47. * \sa SDL_GetClipboardText()
  48. */
  49. extern DECLSPEC SDL_bool SDLCALL SDL_HasClipboardText(void);
  50. /* Ends C function definitions when using C++ */
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54. #include "close_code.h"
  55. #endif /* _SDL_clipboard_h */
  56. /* vi: set ts=4 sw=4 expandtab: */