| | |
| | | /* |
| | | Simple DirectMedia Layer |
| | | Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org> |
| | | Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org> |
| | | |
| | | This software is provided 'as-is', without any express or implied |
| | | warranty. In no event will the authors be held liable for any damages |
| | |
| | | 3. This notice may not be removed or altered from any source distribution. |
| | | */ |
| | | |
| | | #ifndef _SDL_main_h |
| | | #define _SDL_main_h |
| | | #ifndef SDL_main_h_ |
| | | #define SDL_main_h_ |
| | | |
| | | #include "SDL_stdinc.h" |
| | | |
| | |
| | | /* On Android SDL provides a Java class in SDLActivity.java that is the |
| | | main activity entry point. |
| | | |
| | | See README-android.md for more details on extending that class. |
| | | See docs/README-android.md for more details on extending that class. |
| | | */ |
| | | #define SDL_MAIN_NEEDED |
| | | |
| | | /* We need to export SDL_main so it can be launched from Java */ |
| | | #define SDLMAIN_DECLSPEC DECLSPEC |
| | | |
| | | #elif defined(__NACL__) |
| | | /* On NACL we use ppapi_simple to set up the application helper code, |
| | |
| | | #else |
| | | #define C_LINKAGE |
| | | #endif /* __cplusplus */ |
| | | |
| | | #ifndef SDLMAIN_DECLSPEC |
| | | #define SDLMAIN_DECLSPEC |
| | | #endif |
| | | |
| | | /** |
| | | * \file SDL_main.h |
| | |
| | | /** |
| | | * The prototype for the application's main() function |
| | | */ |
| | | extern C_LINKAGE int SDL_main(int argc, char *argv[]); |
| | | extern C_LINKAGE SDLMAIN_DECLSPEC int SDL_main(int argc, char *argv[]); |
| | | |
| | | |
| | | #include "begin_code.h" |
| | |
| | | #endif |
| | | #include "close_code.h" |
| | | |
| | | #endif /* _SDL_main_h */ |
| | | #endif /* SDL_main_h_ */ |
| | | |
| | | /* vi: set ts=4 sw=4 expandtab: */ |