🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.7 KiB

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2022 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. * Put UTF-8 text into the clipboard.
  34. *
  35. * \param text the text to store in the clipboard
  36. * \returns 0 on success or a negative error code on failure; call
  37. * SDL_GetError() for more information.
  38. *
  39. * \since This function is available since SDL 2.0.0.
  40. *
  41. * \sa SDL_GetClipboardText
  42. * \sa SDL_HasClipboardText
  43. */
  44. extern DECLSPEC int SDLCALL SDL_SetClipboardText(const char *text);
  45. /**
  46. * Get UTF-8 text from the clipboard, which must be freed with SDL_free().
  47. *
  48. * This functions returns empty string if there was not enough memory left for
  49. * a copy of the clipboard's content.
  50. *
  51. * \returns the clipboard text on success or an empty string on failure; call
  52. * SDL_GetError() for more information. Caller must call SDL_free()
  53. * on the returned pointer when done with it (even if there was an
  54. * error).
  55. *
  56. * \since This function is available since SDL 2.0.0.
  57. *
  58. * \sa SDL_HasClipboardText
  59. * \sa SDL_SetClipboardText
  60. */
  61. extern DECLSPEC char * SDLCALL SDL_GetClipboardText(void);
  62. /**
  63. * Query whether the clipboard exists and contains a non-empty text string.
  64. *
  65. * \returns SDL_TRUE if the clipboard has text, or SDL_FALSE if it does not.
  66. *
  67. * \since This function is available since SDL 2.0.0.
  68. *
  69. * \sa SDL_GetClipboardText
  70. * \sa SDL_SetClipboardText
  71. */
  72. extern DECLSPEC SDL_bool SDLCALL SDL_HasClipboardText(void);
  73. /* Ends C function definitions when using C++ */
  74. #ifdef __cplusplus
  75. }
  76. #endif
  77. #include "close_code.h"
  78. #endif /* SDL_clipboard_h_ */
  79. /* vi: set ts=4 sw=4 expandtab: */