SDL_main.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. #ifndef SDL_main_h_
  19. #define SDL_main_h_
  20. #include "SDL_stdinc.h"
  21. /**
  22. * \file SDL_main.h
  23. *
  24. * Redefine main() on some platforms so that it is called by SDL.
  25. */
  26. #ifndef SDL_MAIN_HANDLED
  27. #if defined(__WIN32__)
  28. /* On Windows SDL provides WinMain(), which parses the command line and passes
  29. the arguments to your main function.
  30. If you provide your own WinMain(), you may define SDL_MAIN_HANDLED
  31. */
  32. #define SDL_MAIN_AVAILABLE
  33. #elif defined(__WINRT__)
  34. /* On WinRT, SDL provides a main function that initializes CoreApplication,
  35. creating an instance of IFrameworkView in the process.
  36. Please note that #include'ing SDL_main.h is not enough to get a main()
  37. function working. In non-XAML apps, the file,
  38. src/main/winrt/SDL_WinRT_main_NonXAML.cpp, or a copy of it, must be compiled
  39. into the app itself. In XAML apps, the function, SDL_WinRTRunApp must be
  40. called, with a pointer to the Direct3D-hosted XAML control passed in.
  41. */
  42. #define SDL_MAIN_NEEDED
  43. #elif defined(__IPHONEOS__)
  44. /* On iOS SDL provides a main function that creates an application delegate
  45. and starts the iOS application run loop.
  46. See src/video/uikit/SDL_uikitappdelegate.m for more details.
  47. */
  48. #define SDL_MAIN_NEEDED
  49. #elif defined(__ANDROID__)
  50. /* On Android SDL provides a Java class in SDLActivity.java that is the
  51. main activity entry point.
  52. See docs/README-android.md for more details on extending that class.
  53. */
  54. #define SDL_MAIN_NEEDED
  55. /* We need to export SDL_main so it can be launched from Java */
  56. #define SDLMAIN_DECLSPEC DECLSPEC
  57. #elif defined(__NACL__)
  58. /* On NACL we use ppapi_simple to set up the application helper code,
  59. then wait for the first PSE_INSTANCE_DIDCHANGEVIEW event before
  60. starting the user main function.
  61. All user code is run in a separate thread by ppapi_simple, thus
  62. allowing for blocking io to take place via nacl_io
  63. */
  64. #define SDL_MAIN_NEEDED
  65. #endif
  66. #endif /* SDL_MAIN_HANDLED */
  67. #ifdef __cplusplus
  68. #define C_LINKAGE "C"
  69. #else
  70. #define C_LINKAGE
  71. #endif /* __cplusplus */
  72. #ifndef SDLMAIN_DECLSPEC
  73. #define SDLMAIN_DECLSPEC
  74. #endif
  75. /**
  76. * \file SDL_main.h
  77. *
  78. * The application's main() function must be called with C linkage,
  79. * and should be declared like this:
  80. * \code
  81. * #ifdef __cplusplus
  82. * extern "C"
  83. * #endif
  84. * int main(int argc, char *argv[])
  85. * {
  86. * }
  87. * \endcode
  88. */
  89. #if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE)
  90. #define main SDL_main
  91. #endif
  92. /**
  93. * The prototype for the application's main() function
  94. */
  95. extern C_LINKAGE SDLMAIN_DECLSPEC int SDL_main(int argc, char *argv[]);
  96. #include "begin_code.h"
  97. #ifdef __cplusplus
  98. extern "C" {
  99. #endif
  100. /**
  101. * This is called by the real SDL main function to let the rest of the
  102. * library know that initialization was done properly.
  103. *
  104. * Calling this yourself without knowing what you're doing can cause
  105. * crashes and hard to diagnose problems with your application.
  106. */
  107. extern DECLSPEC void SDLCALL SDL_SetMainReady(void);
  108. #ifdef __WIN32__
  109. /**
  110. * This can be called to set the application class at startup
  111. */
  112. extern DECLSPEC int SDLCALL SDL_RegisterApp(char *name, Uint32 style,
  113. void *hInst);
  114. extern DECLSPEC void SDLCALL SDL_UnregisterApp(void);
  115. #endif /* __WIN32__ */
  116. #ifdef __WINRT__
  117. /**
  118. * \brief Initializes and launches an SDL/WinRT application.
  119. *
  120. * \param mainFunction The SDL app's C-style main().
  121. * \param reserved Reserved for future use; should be NULL
  122. * \return 0 on success, -1 on failure. On failure, use SDL_GetError to retrieve more
  123. * information on the failure.
  124. */
  125. extern DECLSPEC int SDLCALL SDL_WinRTRunApp(int (*mainFunction)(int, char **), void * reserved);
  126. #endif /* __WINRT__ */
  127. #ifdef __cplusplus
  128. }
  129. #endif
  130. #include "close_code.h"
  131. #endif /* SDL_main_h_ */
  132. /* vi: set ts=4 sw=4 expandtab: */