slouken@0
|
1 |
/*
|
slouken@0
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@1312
|
3 |
Copyright (C) 1997-2006 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@0
|
28 |
/* Redefine main() on Win32 and MacOS so that it is called by winmain.c */
|
slouken@0
|
29 |
|
slouken@453
|
30 |
#if defined(WIN32) || defined(_WIN32) || \
|
slouken@453
|
31 |
(defined(__MWERKS__) && !defined(__BEOS__)) || \
|
slouken@453
|
32 |
defined(macintosh) || defined(__APPLE__) || \
|
slouken@453
|
33 |
defined(__SYMBIAN32__) || defined(QWS)
|
slouken@0
|
34 |
|
slouken@0
|
35 |
#ifdef __cplusplus
|
slouken@0
|
36 |
#define C_LINKAGE "C"
|
slouken@0
|
37 |
#else
|
slouken@0
|
38 |
#define C_LINKAGE
|
slouken@0
|
39 |
#endif /* __cplusplus */
|
slouken@0
|
40 |
|
slouken@0
|
41 |
/* The application's main() function must be called with C linkage,
|
slouken@0
|
42 |
and should be declared like this:
|
slouken@0
|
43 |
#ifdef __cplusplus
|
slouken@0
|
44 |
extern "C"
|
slouken@0
|
45 |
#endif
|
slouken@0
|
46 |
int main(int argc, char *argv[])
|
slouken@0
|
47 |
{
|
slouken@0
|
48 |
}
|
slouken@0
|
49 |
*/
|
slouken@0
|
50 |
#define main SDL_main
|
slouken@0
|
51 |
|
slouken@0
|
52 |
/* The prototype for the application's main() function */
|
slouken@0
|
53 |
extern C_LINKAGE int SDL_main(int argc, char *argv[]);
|
slouken@0
|
54 |
|
slouken@0
|
55 |
|
slouken@0
|
56 |
/* From the SDL library code -- needed for registering the app on Win32 */
|
slouken@0
|
57 |
#if defined(WIN32)
|
slouken@1356
|
58 |
|
slouken@0
|
59 |
#include "begin_code.h"
|
slouken@0
|
60 |
#ifdef __cplusplus
|
slouken@0
|
61 |
extern "C" {
|
slouken@0
|
62 |
#endif
|
slouken@0
|
63 |
|
slouken@0
|
64 |
/* This should be called from your WinMain() function, if any */
|
slouken@337
|
65 |
extern DECLSPEC void SDLCALL SDL_SetModuleHandle(void *hInst);
|
slouken@145
|
66 |
/* This can also be called, but is no longer necessary */
|
slouken@337
|
67 |
extern DECLSPEC int SDLCALL SDL_RegisterApp(char *name, Uint32 style, void *hInst);
|
icculus@1145
|
68 |
/* This can also be called, but is no longer necessary (SDL_Quit calls it) */
|
icculus@1145
|
69 |
extern DECLSPEC void SDLCALL SDL_UnregisterApp();
|
slouken@0
|
70 |
#ifdef __cplusplus
|
slouken@0
|
71 |
}
|
slouken@0
|
72 |
#endif
|
slouken@0
|
73 |
#include "close_code.h"
|
slouken@0
|
74 |
#endif
|
slouken@0
|
75 |
|
slouken@0
|
76 |
/* From the SDL library code -- needed for registering QuickDraw on MacOS */
|
slouken@0
|
77 |
#if defined(macintosh)
|
slouken@1356
|
78 |
|
slouken@0
|
79 |
#include "begin_code.h"
|
slouken@0
|
80 |
#ifdef __cplusplus
|
slouken@0
|
81 |
extern "C" {
|
slouken@0
|
82 |
#endif
|
slouken@0
|
83 |
|
slouken@0
|
84 |
/* Forward declaration so we don't need to include QuickDraw.h */
|
slouken@0
|
85 |
struct QDGlobals;
|
slouken@0
|
86 |
|
slouken@0
|
87 |
/* This should be called from your main() function, if any */
|
slouken@337
|
88 |
extern DECLSPEC void SDLCALL SDL_InitQuickDraw(struct QDGlobals *the_qd);
|
slouken@0
|
89 |
|
slouken@0
|
90 |
#ifdef __cplusplus
|
slouken@0
|
91 |
}
|
slouken@0
|
92 |
#endif
|
slouken@0
|
93 |
#include "close_code.h"
|
slouken@0
|
94 |
#endif
|
slouken@0
|
95 |
|
slouken@0
|
96 |
#endif /* Need to redefine main()? */
|
slouken@0
|
97 |
|
slouken@0
|
98 |
#endif /* _SDL_main_h */
|