slouken@0
|
1 |
/*
|
slouken@0
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@3697
|
3 |
Copyright (C) 1997-2010 Sam Lantinga
|
slouken@0
|
4 |
|
slouken@0
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@1312
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@0
|
7 |
License as published by the Free Software Foundation; either
|
slouken@1312
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@0
|
9 |
|
slouken@0
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@0
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@0
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@1312
|
13 |
Lesser General Public License for more details.
|
slouken@0
|
14 |
|
slouken@1312
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@1312
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@1312
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@0
|
18 |
|
slouken@0
|
19 |
Sam Lantinga
|
slouken@251
|
20 |
slouken@libsdl.org
|
slouken@0
|
21 |
*/
|
slouken@0
|
22 |
|
slouken@0
|
23 |
#ifndef _SDL_main_h
|
slouken@0
|
24 |
#define _SDL_main_h
|
slouken@0
|
25 |
|
slouken@1356
|
26 |
#include "SDL_stdinc.h"
|
slouken@1356
|
27 |
|
slouken@3407
|
28 |
/**
|
slouken@3407
|
29 |
* \file SDL_main.h
|
slouken@3407
|
30 |
*
|
slouken@3407
|
31 |
* Redefine main() on some platforms so that it is called by SDL.
|
slouken@3407
|
32 |
*/
|
slouken@0
|
33 |
|
slouken@1402
|
34 |
#if defined(__WIN32__) || \
|
slouken@453
|
35 |
(defined(__MWERKS__) && !defined(__BEOS__)) || \
|
slouken@4952
|
36 |
defined(__SYMBIAN32__) || defined(__IPHONEOS__) || \
|
slouken@4952
|
37 |
defined(__ANDROID__)
|
slouken@0
|
38 |
|
slouken@0
|
39 |
#ifdef __cplusplus
|
slouken@0
|
40 |
#define C_LINKAGE "C"
|
slouken@0
|
41 |
#else
|
slouken@0
|
42 |
#define C_LINKAGE
|
slouken@0
|
43 |
#endif /* __cplusplus */
|
slouken@0
|
44 |
|
slouken@3407
|
45 |
/**
|
slouken@3407
|
46 |
* \file SDL_main.h
|
slouken@3407
|
47 |
*
|
slouken@3407
|
48 |
* The application's main() function must be called with C linkage,
|
slouken@3407
|
49 |
* and should be declared like this:
|
slouken@3407
|
50 |
* \code
|
slouken@3407
|
51 |
* #ifdef __cplusplus
|
slouken@3407
|
52 |
* extern "C"
|
slouken@3407
|
53 |
* #endif
|
slouken@3407
|
54 |
* int main(int argc, char *argv[])
|
slouken@3407
|
55 |
* {
|
slouken@3407
|
56 |
* }
|
slouken@3407
|
57 |
* \endcode
|
slouken@0
|
58 |
*/
|
slouken@3407
|
59 |
|
slouken@0
|
60 |
#define main SDL_main
|
slouken@0
|
61 |
|
slouken@3407
|
62 |
/**
|
slouken@3407
|
63 |
* The prototype for the application's main() function
|
slouken@3407
|
64 |
*/
|
slouken@0
|
65 |
extern C_LINKAGE int SDL_main(int argc, char *argv[]);
|
slouken@0
|
66 |
|
slouken@0
|
67 |
|
slouken@0
|
68 |
/* From the SDL library code -- needed for registering the app on Win32 */
|
slouken@1402
|
69 |
#ifdef __WIN32__
|
slouken@1356
|
70 |
|
slouken@0
|
71 |
#include "begin_code.h"
|
slouken@0
|
72 |
#ifdef __cplusplus
|
slouken@1895
|
73 |
/* *INDENT-OFF* */
|
slouken@0
|
74 |
extern "C" {
|
slouken@1895
|
75 |
/* *INDENT-ON* */
|
slouken@0
|
76 |
#endif
|
slouken@0
|
77 |
|
slouken@3407
|
78 |
/**
|
slouken@3407
|
79 |
* This can be called to set the application class at startup
|
slouken@3407
|
80 |
*/
|
slouken@1895
|
81 |
extern DECLSPEC int SDLCALL SDL_RegisterApp(char *name, Uint32 style,
|
slouken@1895
|
82 |
void *hInst);
|
slouken@1466
|
83 |
extern DECLSPEC void SDLCALL SDL_UnregisterApp(void);
|
slouken@1895
|
84 |
|
slouken@0
|
85 |
#ifdef __cplusplus
|
slouken@1895
|
86 |
/* *INDENT-OFF* */
|
slouken@0
|
87 |
}
|
slouken@1895
|
88 |
/* *INDENT-ON* */
|
slouken@0
|
89 |
#endif
|
slouken@0
|
90 |
#include "close_code.h"
|
slouken@0
|
91 |
#endif
|
slouken@0
|
92 |
|
slouken@0
|
93 |
#endif /* Need to redefine main()? */
|
slouken@0
|
94 |
|
slouken@0
|
95 |
#endif /* _SDL_main_h */
|
slouken@1895
|
96 |
|
slouken@1895
|
97 |
/* vi: set ts=4 sw=4 expandtab: */
|