SDL_system.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2018 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_system.h
  20. *
  21. * Include file for platform specific SDL API functions
  22. */
  23. #ifndef SDL_system_h_
  24. #define SDL_system_h_
  25. #include "SDL_stdinc.h"
  26. #include "SDL_keyboard.h"
  27. #include "SDL_render.h"
  28. #include "SDL_video.h"
  29. #include "begin_code.h"
  30. /* Set up for C function definitions, even when using C++ */
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /* Platform specific functions for Windows */
  35. #ifdef __WIN32__
  36. /**
  37. \brief Set a function that is called for every windows message, before TranslateMessage()
  38. */
  39. typedef void (SDLCALL * SDL_WindowsMessageHook)(void *userdata, void *hWnd, unsigned int message, Uint64 wParam, Sint64 lParam);
  40. extern DECLSPEC void SDLCALL SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void *userdata);
  41. /**
  42. \brief Returns the D3D9 adapter index that matches the specified display index.
  43. This adapter index can be passed to IDirect3D9::CreateDevice and controls
  44. on which monitor a full screen application will appear.
  45. */
  46. extern DECLSPEC int SDLCALL SDL_Direct3D9GetAdapterIndex( int displayIndex );
  47. typedef struct IDirect3DDevice9 IDirect3DDevice9;
  48. /**
  49. \brief Returns the D3D device associated with a renderer, or NULL if it's not a D3D renderer.
  50. Once you are done using the device, you should release it to avoid a resource leak.
  51. */
  52. extern DECLSPEC IDirect3DDevice9* SDLCALL SDL_RenderGetD3D9Device(SDL_Renderer * renderer);
  53. /**
  54. \brief Returns the DXGI Adapter and Output indices for the specified display index.
  55. These can be passed to EnumAdapters and EnumOutputs respectively to get the objects
  56. required to create a DX10 or DX11 device and swap chain.
  57. */
  58. extern DECLSPEC SDL_bool SDLCALL SDL_DXGIGetOutputInfo( int displayIndex, int *adapterIndex, int *outputIndex );
  59. #endif /* __WIN32__ */
  60. /* Platform specific functions for iOS */
  61. #if defined(__IPHONEOS__) && __IPHONEOS__
  62. #define SDL_iOSSetAnimationCallback(window, interval, callback, callbackParam) SDL_iPhoneSetAnimationCallback(window, interval, callback, callbackParam)
  63. extern DECLSPEC int SDLCALL SDL_iPhoneSetAnimationCallback(SDL_Window * window, int interval, void (*callback)(void*), void *callbackParam);
  64. #define SDL_iOSSetEventPump(enabled) SDL_iPhoneSetEventPump(enabled)
  65. extern DECLSPEC void SDLCALL SDL_iPhoneSetEventPump(SDL_bool enabled);
  66. #endif /* __IPHONEOS__ */
  67. /* Platform specific functions for Android */
  68. #if defined(__ANDROID__) && __ANDROID__
  69. /**
  70. \brief Get the JNI environment for the current thread
  71. This returns JNIEnv*, but the prototype is void* so we don't need jni.h
  72. */
  73. extern DECLSPEC void * SDLCALL SDL_AndroidGetJNIEnv(void);
  74. /**
  75. \brief Get the SDL Activity object for the application
  76. This returns jobject, but the prototype is void* so we don't need jni.h
  77. The jobject returned by SDL_AndroidGetActivity is a local reference.
  78. It is the caller's responsibility to properly release it
  79. (using env->Push/PopLocalFrame or manually with env->DeleteLocalRef)
  80. */
  81. extern DECLSPEC void * SDLCALL SDL_AndroidGetActivity(void);
  82. /**
  83. \brief Return true if the application is running on Android TV
  84. */
  85. extern DECLSPEC SDL_bool SDLCALL SDL_IsAndroidTV(void);
  86. /**
  87. See the official Android developer guide for more information:
  88. http://developer.android.com/guide/topics/data/data-storage.html
  89. */
  90. #define SDL_ANDROID_EXTERNAL_STORAGE_READ 0x01
  91. #define SDL_ANDROID_EXTERNAL_STORAGE_WRITE 0x02
  92. /**
  93. \brief Get the path used for internal storage for this application.
  94. This path is unique to your application and cannot be written to
  95. by other applications.
  96. */
  97. extern DECLSPEC const char * SDLCALL SDL_AndroidGetInternalStoragePath(void);
  98. /**
  99. \brief Get the current state of external storage, a bitmask of these values:
  100. SDL_ANDROID_EXTERNAL_STORAGE_READ
  101. SDL_ANDROID_EXTERNAL_STORAGE_WRITE
  102. If external storage is currently unavailable, this will return 0.
  103. */
  104. extern DECLSPEC int SDLCALL SDL_AndroidGetExternalStorageState(void);
  105. /**
  106. \brief Get the path used for external storage for this application.
  107. This path is unique to your application, but is public and can be
  108. written to by other applications.
  109. */
  110. extern DECLSPEC const char * SDLCALL SDL_AndroidGetExternalStoragePath(void);
  111. #endif /* __ANDROID__ */
  112. /* Platform specific functions for WinRT */
  113. #if defined(__WINRT__) && __WINRT__
  114. /**
  115. * \brief WinRT / Windows Phone path types
  116. */
  117. typedef enum
  118. {
  119. /** \brief The installed app's root directory.
  120. Files here are likely to be read-only. */
  121. SDL_WINRT_PATH_INSTALLED_LOCATION,
  122. /** \brief The app's local data store. Files may be written here */
  123. SDL_WINRT_PATH_LOCAL_FOLDER,
  124. /** \brief The app's roaming data store. Unsupported on Windows Phone.
  125. Files written here may be copied to other machines via a network
  126. connection.
  127. */
  128. SDL_WINRT_PATH_ROAMING_FOLDER,
  129. /** \brief The app's temporary data store. Unsupported on Windows Phone.
  130. Files written here may be deleted at any time. */
  131. SDL_WINRT_PATH_TEMP_FOLDER
  132. } SDL_WinRT_Path;
  133. /**
  134. * \brief WinRT Device Family
  135. */
  136. typedef enum
  137. {
  138. /** \brief Unknown family */
  139. SDL_WINRT_DEVICEFAMILY_UNKNOWN,
  140. /** \brief Desktop family*/
  141. SDL_WINRT_DEVICEFAMILY_DESKTOP,
  142. /** \brief Mobile family (for example smartphone) */
  143. SDL_WINRT_DEVICEFAMILY_MOBILE,
  144. /** \brief XBox family */
  145. SDL_WINRT_DEVICEFAMILY_XBOX,
  146. } SDL_WinRT_DeviceFamily;
  147. /**
  148. * \brief Retrieves a WinRT defined path on the local file system
  149. *
  150. * \note Documentation on most app-specific path types on WinRT
  151. * can be found on MSDN, at the URL:
  152. * http://msdn.microsoft.com/en-us/library/windows/apps/hh464917.aspx
  153. *
  154. * \param pathType The type of path to retrieve.
  155. * \return A UCS-2 string (16-bit, wide-char) containing the path, or NULL
  156. * if the path is not available for any reason. Not all paths are
  157. * available on all versions of Windows. This is especially true on
  158. * Windows Phone. Check the documentation for the given
  159. * SDL_WinRT_Path for more information on which path types are
  160. * supported where.
  161. */
  162. extern DECLSPEC const wchar_t * SDLCALL SDL_WinRTGetFSPathUNICODE(SDL_WinRT_Path pathType);
  163. /**
  164. * \brief Retrieves a WinRT defined path on the local file system
  165. *
  166. * \note Documentation on most app-specific path types on WinRT
  167. * can be found on MSDN, at the URL:
  168. * http://msdn.microsoft.com/en-us/library/windows/apps/hh464917.aspx
  169. *
  170. * \param pathType The type of path to retrieve.
  171. * \return A UTF-8 string (8-bit, multi-byte) containing the path, or NULL
  172. * if the path is not available for any reason. Not all paths are
  173. * available on all versions of Windows. This is especially true on
  174. * Windows Phone. Check the documentation for the given
  175. * SDL_WinRT_Path for more information on which path types are
  176. * supported where.
  177. */
  178. extern DECLSPEC const char * SDLCALL SDL_WinRTGetFSPathUTF8(SDL_WinRT_Path pathType);
  179. /**
  180. * \brief Detects the device family of WinRT plattform on runtime
  181. *
  182. * \return Device family
  183. */
  184. extern DECLSPEC SDL_WinRT_DeviceFamily SDLCALL SDL_WinRTGetDeviceFamily();
  185. #endif /* __WINRT__ */
  186. /* Ends C function definitions when using C++ */
  187. #ifdef __cplusplus
  188. }
  189. #endif
  190. #include "close_code.h"
  191. #endif /* SDL_system_h_ */
  192. /* vi: set ts=4 sw=4 expandtab: */