Skip to content

Latest commit

 

History

History
106 lines (84 loc) · 2.8 KB

SDL_main.h

File metadata and controls

106 lines (84 loc) · 2.8 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
*/
#ifndef _SDL_main_h
#define _SDL_main_h
Feb 10, 2006
Feb 10, 2006
26
27
#include "SDL_stdinc.h"
Sep 21, 2009
Sep 21, 2009
28
29
30
/** @file SDL_main.h
* Redefine main() on Win32 and MacOS so that it is called by winmain.c
*/
Apr 26, 2001
Apr 26, 2001
31
Feb 21, 2006
Feb 21, 2006
32
#if defined(__WIN32__) || \
Aug 20, 2002
Aug 20, 2002
33
(defined(__MWERKS__) && !defined(__BEOS__)) || \
Feb 21, 2006
Feb 21, 2006
34
defined(__MACOS__) || defined(__MACOSX__) || \
Aug 20, 2002
Aug 20, 2002
35
defined(__SYMBIAN32__) || defined(QWS)
Apr 26, 2001
Apr 26, 2001
36
37
38
39
40
41
42
#ifdef __cplusplus
#define C_LINKAGE "C"
#else
#define C_LINKAGE
#endif /* __cplusplus */
Sep 21, 2009
Sep 21, 2009
43
44
45
46
47
48
49
50
51
52
/** The application's main() function must be called with C linkage,
* and should be declared like this:
* @code
* #ifdef __cplusplus
* extern "C"
* #endif
* int main(int argc, char *argv[])
* {
* }
* @endcode
Apr 26, 2001
Apr 26, 2001
53
54
55
*/
#define main SDL_main
Sep 21, 2009
Sep 21, 2009
56
/** The prototype for the application's main() function */
Apr 26, 2001
Apr 26, 2001
57
58
59
extern C_LINKAGE int SDL_main(int argc, char *argv[]);
Sep 21, 2009
Sep 21, 2009
60
61
/** @name From the SDL library code -- needed for registering the app on Win32 */
/*@{*/
Feb 21, 2006
Feb 21, 2006
62
#ifdef __WIN32__
Apr 26, 2001
Apr 26, 2001
63
Feb 10, 2006
Feb 10, 2006
64
#include "begin_code.h"
Apr 26, 2001
Apr 26, 2001
65
66
67
68
#ifdef __cplusplus
extern "C" {
#endif
Sep 21, 2009
Sep 21, 2009
69
/** This should be called from your WinMain() function, if any */
Apr 11, 2002
Apr 11, 2002
70
extern DECLSPEC void SDLCALL SDL_SetModuleHandle(void *hInst);
Sep 21, 2009
Sep 21, 2009
71
/** This can also be called, but is no longer necessary */
Apr 11, 2002
Apr 11, 2002
72
extern DECLSPEC int SDLCALL SDL_RegisterApp(char *name, Uint32 style, void *hInst);
Sep 21, 2009
Sep 21, 2009
73
/** This can also be called, but is no longer necessary (SDL_Quit calls it) */
Mar 5, 2006
Mar 5, 2006
74
extern DECLSPEC void SDLCALL SDL_UnregisterApp(void);
Apr 26, 2001
Apr 26, 2001
75
76
77
78
79
#ifdef __cplusplus
}
#endif
#include "close_code.h"
#endif
Sep 21, 2009
Sep 21, 2009
80
/*@}*/
Apr 26, 2001
Apr 26, 2001
81
Sep 21, 2009
Sep 21, 2009
82
83
/** @name From the SDL library code -- needed for registering QuickDraw on MacOS */
/*@{*/
Feb 21, 2006
Feb 21, 2006
84
#if defined(__MACOS__)
Apr 26, 2001
Apr 26, 2001
85
Feb 10, 2006
Feb 10, 2006
86
#include "begin_code.h"
Apr 26, 2001
Apr 26, 2001
87
88
89
90
#ifdef __cplusplus
extern "C" {
#endif
Sep 21, 2009
Sep 21, 2009
91
/** Forward declaration so we don't need to include QuickDraw.h */
Apr 26, 2001
Apr 26, 2001
92
93
struct QDGlobals;
Sep 21, 2009
Sep 21, 2009
94
/** This should be called from your main() function, if any */
Apr 11, 2002
Apr 11, 2002
95
extern DECLSPEC void SDLCALL SDL_InitQuickDraw(struct QDGlobals *the_qd);
Apr 26, 2001
Apr 26, 2001
96
97
98
99
100
101
#ifdef __cplusplus
}
#endif
#include "close_code.h"
#endif
Sep 21, 2009
Sep 21, 2009
102
/*@}*/
Apr 26, 2001
Apr 26, 2001
103
104
105
106
#endif /* Need to redefine main()? */
#endif /* _SDL_main_h */