SDL.h 7.9 KB

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