Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
166 lines (147 loc) · 5.29 KB

File metadata and controls

166 lines (147 loc) · 5.29 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
*/
Jul 10, 2006
Jul 10, 2006
23
/**
Oct 19, 2009
Oct 19, 2009
24
25
26
* \file SDL.h
*
* Main include header for the SDL library
Jul 10, 2006
Jul 10, 2006
27
28
*/
Oct 19, 2009
Oct 19, 2009
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* \mainpage Simple DirectMedia Layer (SDL)
*
* http://www.libsdl.org/
*
* \section intro_sec Introduction
*
* This is the Simple DirectMedia Layer, a general API that provides low
* level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL,
* and 2D framebuffer across multiple platforms.
*
* The current version supports Linux, Windows, Windows CE, BeOS, MacOS,
* Mac OS X, FreeBSD, NetBSD, OpenBSD, BSD/OS, Solaris, IRIX, and QNX.
* The code contains support for AIX, OSF/Tru64, RISC OS, and SymbianOS,
* but these are not officially supported.
*
* SDL is written in C, but works with C++ natively, and has bindings to
* several other languages, including Ada, C#, Eiffel, Erlang, Euphoria,
* Guile, Haskell, Java, Lisp, Lua, ML, Objective C, Pascal, Perl, PHP,
* Pike, Pliant, Python, Ruby, and Smalltalk.
*
* This library is distributed under GNU LGPL version 2, which can be
* found in the file "COPYING". This license allows you to use SDL
* freely in commercial programs as long as you link with the dynamic
* library.
*
* The best way to learn how to use SDL is to check out the header files in
* the "include" subdirectory and the programs in the "test" subdirectory.
* The header files and test programs are well commented and always up to date.
* More documentation is available in HTML format in "docs/index.html", and
* a documentation wiki is available online at:
* http://www.libsdl.org/cgi/docwiki.cgi
*
* The test programs in the "test" subdirectory are in the public domain.
*
* Frequently asked questions are answered online:
* http://www.libsdl.org/faq.php
*
* If you need help with the library, or just want to discuss SDL related
* issues, you can join the developers mailing list:
* http://www.libsdl.org/mailing-list.php
*
* Enjoy!
* Sam Lantinga (slouken@libsdl.org)
Jul 10, 2006
Jul 10, 2006
73
*/
Apr 26, 2001
Apr 26, 2001
74
75
76
77
#ifndef _SDL_H
#define _SDL_H
Feb 24, 2006
Feb 24, 2006
78
#include "SDL_main.h"
Feb 9, 2006
Feb 9, 2006
79
#include "SDL_stdinc.h"
Jan 13, 2010
Jan 13, 2010
80
#include "SDL_assert.h"
Jun 9, 2009
Jun 9, 2009
81
#include "SDL_atomic.h"
Apr 26, 2001
Apr 26, 2001
82
#include "SDL_audio.h"
Feb 10, 2006
Feb 10, 2006
83
84
85
#include "SDL_cpuinfo.h"
#include "SDL_endian.h"
#include "SDL_error.h"
Apr 26, 2001
Apr 26, 2001
86
#include "SDL_events.h"
Feb 9, 2006
Feb 9, 2006
87
#include "SDL_loadso.h"
Feb 10, 2006
Feb 10, 2006
88
#include "SDL_mutex.h"
Jun 7, 2009
Jun 7, 2009
89
#include "SDL_power.h"
Feb 10, 2006
Feb 10, 2006
90
91
92
#include "SDL_rwops.h"
#include "SDL_thread.h"
#include "SDL_timer.h"
Apr 26, 2001
Apr 26, 2001
93
#include "SDL_version.h"
Jan 13, 2010
Jan 13, 2010
94
#include "SDL_video.h"
Jul 10, 2006
Jul 10, 2006
95
#include "SDL_compat.h"
Apr 26, 2001
Apr 26, 2001
96
97
98
99
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
100
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
101
extern "C" {
Jul 10, 2006
Jul 10, 2006
102
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
103
104
105
106
#endif
/* As of version 0.5, SDL is loaded dynamically into the application */
Oct 19, 2009
Oct 19, 2009
107
108
109
110
111
112
113
/**
* \name SDL_INIT_*
*
* These are the flags which may be passed to SDL_Init(). You should
* specify the subsystems which you will be using in your application.
*/
/*@{*/
Aug 25, 2008
Aug 25, 2008
114
115
116
117
118
#define SDL_INIT_TIMER 0x00000001
#define SDL_INIT_AUDIO 0x00000010
#define SDL_INIT_VIDEO 0x00000020
#define SDL_INIT_JOYSTICK 0x00000200
#define SDL_INIT_HAPTIC 0x00001000
Oct 19, 2009
Oct 19, 2009
119
120
#define SDL_INIT_NOPARACHUTE 0x00100000 /**< Don't catch fatal signals */
#define SDL_INIT_EVENTTHREAD 0x01000000 /**< Not supported on all OS's */
Aug 25, 2008
Aug 25, 2008
121
#define SDL_INIT_EVERYTHING 0x0000FFFF
Oct 19, 2009
Oct 19, 2009
122
/*@}*/
Apr 26, 2001
Apr 26, 2001
123
Oct 6, 2009
Oct 6, 2009
124
/**
Oct 19, 2009
Oct 19, 2009
125
126
127
128
* This function loads the SDL dynamically linked library and initializes
* the subsystems specified by \c flags (and those satisfying dependencies).
* Unless the ::SDL_INIT_NOPARACHUTE flag is set, it will install cleanup
* signal handlers for some commonly ignored fatal signals (like SIGSEGV).
Apr 26, 2001
Apr 26, 2001
129
*/
Apr 11, 2002
Apr 11, 2002
130
extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
Apr 26, 2001
Apr 26, 2001
131
Oct 6, 2009
Oct 6, 2009
132
/**
Oct 19, 2009
Oct 19, 2009
133
* This function initializes specific SDL subsystems
Oct 6, 2009
Oct 6, 2009
134
*/
Apr 11, 2002
Apr 11, 2002
135
extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
Apr 26, 2001
Apr 26, 2001
136
Oct 19, 2009
Oct 19, 2009
137
138
139
/**
* This function cleans up specific SDL subsystems
*/
Apr 11, 2002
Apr 11, 2002
140
extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
Apr 26, 2001
Apr 26, 2001
141
Oct 6, 2009
Oct 6, 2009
142
/**
Oct 19, 2009
Oct 19, 2009
143
144
145
146
147
* This function returns mask of the specified subsystems which have
* been initialized.
*
* If \c flags is 0, it returns a mask of all initialized subsystems.
*/
Apr 11, 2002
Apr 11, 2002
148
extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
Apr 26, 2001
Apr 26, 2001
149
Oct 6, 2009
Oct 6, 2009
150
/**
Oct 19, 2009
Oct 19, 2009
151
152
* This function cleans up all initialized subsystems and unloads the
* dynamically linked library. You should call it upon all exit conditions.
Apr 26, 2001
Apr 26, 2001
153
*/
Apr 11, 2002
Apr 11, 2002
154
extern DECLSPEC void SDLCALL SDL_Quit(void);
Apr 26, 2001
Apr 26, 2001
155
156
157
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
158
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
159
}
Jul 10, 2006
Jul 10, 2006
160
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
161
162
163
164
#endif
#include "close_code.h"
#endif /* _SDL_H */
Jul 10, 2006
Jul 10, 2006
165
166
/* vi: set ts=4 sw=4 expandtab: */