SDL.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2022 Sam Lantinga <[email protected]>
  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.h
  20. *
  21. * Main include header for the SDL library
  22. */
  23. #ifndef SDL_h_
  24. #define SDL_h_
  25. #include <SDL3/SDL_stdinc.h>
  26. #include <SDL3/SDL_assert.h>
  27. #include <SDL3/SDL_atomic.h>
  28. #include <SDL3/SDL_audio.h>
  29. #include <SDL3/SDL_bits.h>
  30. #include <SDL3/SDL_blendmode.h>
  31. #include <SDL3/SDL_clipboard.h>
  32. #include <SDL3/SDL_cpuinfo.h>
  33. #include <SDL3/SDL_endian.h>
  34. #include <SDL3/SDL_error.h>
  35. #include <SDL3/SDL_events.h>
  36. #include <SDL3/SDL_filesystem.h>
  37. #include <SDL3/SDL_gamecontroller.h>
  38. #include <SDL3/SDL_guid.h>
  39. #include <SDL3/SDL_haptic.h>
  40. #include <SDL3/SDL_hidapi.h>
  41. #include <SDL3/SDL_hints.h>
  42. #include <SDL3/SDL_joystick.h>
  43. #include <SDL3/SDL_keyboard.h>
  44. #include <SDL3/SDL_keycode.h>
  45. #include <SDL3/SDL_loadso.h>
  46. #include <SDL3/SDL_locale.h>
  47. #include <SDL3/SDL_log.h>
  48. #include <SDL3/SDL_messagebox.h>
  49. #include <SDL3/SDL_metal.h>
  50. #include <SDL3/SDL_misc.h>
  51. #include <SDL3/SDL_mouse.h>
  52. #include <SDL3/SDL_mutex.h>
  53. #include <SDL3/SDL_pixels.h>
  54. #include <SDL3/SDL_platform.h>
  55. #include <SDL3/SDL_power.h>
  56. #include <SDL3/SDL_quit.h>
  57. #include <SDL3/SDL_rect.h>
  58. #include <SDL3/SDL_render.h>
  59. #include <SDL3/SDL_revision.h>
  60. #include <SDL3/SDL_rwops.h>
  61. #include <SDL3/SDL_scancode.h>
  62. #include <SDL3/SDL_sensor.h>
  63. #include <SDL3/SDL_shape.h>
  64. #include <SDL3/SDL_surface.h>
  65. #include <SDL3/SDL_system.h>
  66. #include <SDL3/SDL_thread.h>
  67. #include <SDL3/SDL_timer.h>
  68. #include <SDL3/SDL_touch.h>
  69. #include <SDL3/SDL_version.h>
  70. #include <SDL3/SDL_video.h>
  71. #include <SDL3/begin_code.h>
  72. /* Set up for C function definitions, even when using C++ */
  73. #ifdef __cplusplus
  74. extern "C" {
  75. #endif
  76. /* As of version 0.5, SDL is loaded dynamically into the application */
  77. /**
  78. * \name SDL_INIT_*
  79. *
  80. * These are the flags which may be passed to SDL_Init(). You should
  81. * specify the subsystems which you will be using in your application.
  82. */
  83. /* @{ */
  84. #define SDL_INIT_TIMER 0x00000001u
  85. #define SDL_INIT_AUDIO 0x00000010u
  86. #define SDL_INIT_VIDEO 0x00000020u /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
  87. #define SDL_INIT_JOYSTICK 0x00000200u /**< SDL_INIT_JOYSTICK implies SDL_INIT_EVENTS */
  88. #define SDL_INIT_HAPTIC 0x00001000u
  89. #define SDL_INIT_GAMECONTROLLER 0x00002000u /**< SDL_INIT_GAMECONTROLLER implies SDL_INIT_JOYSTICK */
  90. #define SDL_INIT_EVENTS 0x00004000u
  91. #define SDL_INIT_SENSOR 0x00008000u
  92. #define SDL_INIT_NOPARACHUTE 0x00100000u /**< compatibility; this flag is ignored. */
  93. #define SDL_INIT_EVERYTHING ( \
  94. SDL_INIT_TIMER | SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_EVENTS | \
  95. SDL_INIT_JOYSTICK | SDL_INIT_HAPTIC | SDL_INIT_GAMECONTROLLER | SDL_INIT_SENSOR \
  96. )
  97. /* @} */
  98. /**
  99. * Initialize the SDL library.
  100. *
  101. * SDL_Init() simply forwards to calling SDL_InitSubSystem(). Therefore, the
  102. * two may be used interchangeably. Though for readability of your code
  103. * SDL_InitSubSystem() might be preferred.
  104. *
  105. * The file I/O (for example: SDL_RWFromFile) and threading (SDL_CreateThread)
  106. * subsystems are initialized by default. Message boxes
  107. * (SDL_ShowSimpleMessageBox) also attempt to work without initializing the
  108. * video subsystem, in hopes of being useful in showing an error dialog when
  109. * SDL_Init fails. You must specifically initialize other subsystems if you
  110. * use them in your application.
  111. *
  112. * Logging (such as SDL_Log) works without initialization, too.
  113. *
  114. * `flags` may be any of the following OR'd together:
  115. *
  116. * - `SDL_INIT_TIMER`: timer subsystem
  117. * - `SDL_INIT_AUDIO`: audio subsystem
  118. * - `SDL_INIT_VIDEO`: video subsystem; automatically initializes the events
  119. * subsystem
  120. * - `SDL_INIT_JOYSTICK`: joystick subsystem; automatically initializes the
  121. * events subsystem
  122. * - `SDL_INIT_HAPTIC`: haptic (force feedback) subsystem
  123. * - `SDL_INIT_GAMECONTROLLER`: controller subsystem; automatically
  124. * initializes the joystick subsystem
  125. * - `SDL_INIT_EVENTS`: events subsystem
  126. * - `SDL_INIT_EVERYTHING`: all of the above subsystems
  127. * - `SDL_INIT_NOPARACHUTE`: compatibility; this flag is ignored
  128. *
  129. * Subsystem initialization is ref-counted, you must call SDL_QuitSubSystem()
  130. * for each SDL_InitSubSystem() to correctly shutdown a subsystem manually (or
  131. * call SDL_Quit() to force shutdown). If a subsystem is already loaded then
  132. * this call will increase the ref-count and return.
  133. *
  134. * \param flags subsystem initialization flags
  135. * \returns 0 on success or a negative error code on failure; call
  136. * SDL_GetError() for more information.
  137. *
  138. * \since This function is available since SDL 3.0.0.
  139. *
  140. * \sa SDL_InitSubSystem
  141. * \sa SDL_Quit
  142. * \sa SDL_SetMainReady
  143. * \sa SDL_WasInit
  144. */
  145. extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
  146. /**
  147. * Compatibility function to initialize the SDL library.
  148. *
  149. * This function and SDL_Init() are interchangeable.
  150. *
  151. * \param flags any of the flags used by SDL_Init(); see SDL_Init for details.
  152. * \returns 0 on success or a negative error code on failure; call
  153. * SDL_GetError() for more information.
  154. *
  155. * \since This function is available since SDL 3.0.0.
  156. *
  157. * \sa SDL_Init
  158. * \sa SDL_Quit
  159. * \sa SDL_QuitSubSystem
  160. */
  161. extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
  162. /**
  163. * Shut down specific SDL subsystems.
  164. *
  165. * If you start a subsystem using a call to that subsystem's init function
  166. * (for example SDL_VideoInit()) instead of SDL_Init() or SDL_InitSubSystem(),
  167. * SDL_QuitSubSystem() and SDL_WasInit() will not work. You will need to use
  168. * that subsystem's quit function (SDL_VideoQuit()) directly instead. But
  169. * generally, you should not be using those functions directly anyhow; use
  170. * SDL_Init() instead.
  171. *
  172. * You still need to call SDL_Quit() even if you close all open subsystems
  173. * with SDL_QuitSubSystem().
  174. *
  175. * \param flags any of the flags used by SDL_Init(); see SDL_Init for details.
  176. *
  177. * \since This function is available since SDL 3.0.0.
  178. *
  179. * \sa SDL_InitSubSystem
  180. * \sa SDL_Quit
  181. */
  182. extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
  183. /**
  184. * Get a mask of the specified subsystems which are currently initialized.
  185. *
  186. * \param flags any of the flags used by SDL_Init(); see SDL_Init for details.
  187. * \returns a mask of all initialized subsystems if `flags` is 0, otherwise it
  188. * returns the initialization status of the specified subsystems.
  189. *
  190. * The return value does not include SDL_INIT_NOPARACHUTE.
  191. *
  192. * \since This function is available since SDL 3.0.0.
  193. *
  194. * \sa SDL_Init
  195. * \sa SDL_InitSubSystem
  196. */
  197. extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  198. /**
  199. * Clean up all initialized subsystems.
  200. *
  201. * You should call this function even if you have already shutdown each
  202. * initialized subsystem with SDL_QuitSubSystem(). It is safe to call this
  203. * function even in the case of errors in initialization.
  204. *
  205. * If you start a subsystem using a call to that subsystem's init function
  206. * (for example SDL_VideoInit()) instead of SDL_Init() or SDL_InitSubSystem(),
  207. * then you must use that subsystem's quit function (SDL_VideoQuit()) to shut
  208. * it down before calling SDL_Quit(). But generally, you should not be using
  209. * those functions directly anyhow; use SDL_Init() instead.
  210. *
  211. * You can use this function with atexit() to ensure that it is run when your
  212. * application is shutdown, but it is not wise to do this from a library or
  213. * other dynamically loaded code.
  214. *
  215. * \since This function is available since SDL 3.0.0.
  216. *
  217. * \sa SDL_Init
  218. * \sa SDL_QuitSubSystem
  219. */
  220. extern DECLSPEC void SDLCALL SDL_Quit(void);
  221. /* Ends C function definitions when using C++ */
  222. #ifdef __cplusplus
  223. }
  224. #endif
  225. #include <SDL3/close_code.h>
  226. #endif /* SDL_h_ */
  227. /* vi: set ts=4 sw=4 expandtab: */