Mercurial > sdl-ios-xcode
annotate include/SDL_syswm.h @ 606:84d043703e77
Date: Fri, 28 Feb 2003 22:47:56 +0100
From: Denis Oliver Kropp
Subject: Makefile.am fix
I fixed the Makefile.am which lacked many defines.
With this patch SDL on DirectFB doesn't crash on
startup immediately.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 06 Mar 2003 06:18:24 +0000 |
parents | 26dafefeebb2 |
children | 550bccdf04bd |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
297
f6ffac90895c
Updated copyright information for 2002
Sam Lantinga <slouken@libsdl.org>
parents:
251
diff
changeset
|
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
9 | |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | |
19 Sam Lantinga | |
251
b8688cfdc232
Updated the headers with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
94
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #ifdef SAVE_RCSID | |
24 static char rcsid = | |
25 "@(#) $Id$"; | |
26 #endif | |
27 | |
28 /* Include file for SDL custom system window manager hooks */ | |
29 | |
30 #ifndef _SDL_syswm_h | |
31 #define _SDL_syswm_h | |
32 | |
33 #include "SDL_version.h" | |
34 | |
35 #include "begin_code.h" | |
36 /* Set up for C function definitions, even when using C++ */ | |
37 #ifdef __cplusplus | |
38 extern "C" { | |
39 #endif | |
40 | |
41 /* Your application has access to a special type of event 'SDL_SYSWMEVENT', | |
42 which contains window-manager specific information and arrives whenever | |
43 an unhandled window event occurs. This event is ignored by default, but | |
44 you can enable it with SDL_EventState() | |
45 */ | |
46 #ifdef SDL_PROTOTYPES_ONLY | |
47 struct SDL_SysWMinfo; | |
48 typedef struct SDL_SysWMinfo SDL_SysWMinfo; | |
49 #else | |
50 | |
51 /* This is the structure for custom window manager events */ | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
32
diff
changeset
|
52 #if (defined(unix) || defined(__unix__) || defined(_AIX) || defined(__OpenBSD__)) && \ |
471
26dafefeebb2
Date: Sat, 24 Aug 2002 22:20:01 -0600
Sam Lantinga <slouken@libsdl.org>
parents:
438
diff
changeset
|
53 (!defined(DISABLE_X11) && !defined(__CYGWIN32__) && !defined(ENABLE_NANOX)) |
0 | 54 /* AIX is unix, of course, but the native compiler CSet doesn't define unix */ |
55 #include <X11/Xlib.h> | |
56 #include <X11/Xatom.h> | |
57 | |
58 /* These are the various supported subsystems under UNIX */ | |
59 typedef enum { | |
60 SDL_SYSWM_X11 | |
61 } SDL_SYSWM_TYPE; | |
62 | |
63 /* The UNIX custom event structure */ | |
64 struct SDL_SysWMmsg { | |
65 SDL_version version; | |
66 SDL_SYSWM_TYPE subsystem; | |
67 union { | |
68 XEvent xevent; | |
69 } event; | |
70 }; | |
71 | |
72 /* The UNIX custom window manager information structure. | |
73 When this structure is returned, it holds information about which | |
74 low level system it is using, and will be one of SDL_SYSWM_TYPE. | |
75 */ | |
76 typedef struct { | |
77 SDL_version version; | |
78 SDL_SYSWM_TYPE subsystem; | |
79 union { | |
80 struct { | |
81 Display *display; /* The X11 display */ | |
82 Window window; /* The X11 display window */ | |
83 /* These locking functions should be called around | |
84 any X11 functions using the display variable. | |
85 They lock the event thread, so should not be | |
86 called around event functions or from event filters. | |
87 */ | |
88 void (*lock_func)(void); | |
89 void (*unlock_func)(void); | |
90 | |
91 /* Introduced in SDL 1.0.2 */ | |
92 Window fswindow; /* The X11 fullscreen window */ | |
93 Window wmwindow; /* The X11 managed input window */ | |
94 } x11; | |
95 } info; | |
96 } SDL_SysWMinfo; | |
97 | |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
98 #elif defined(ENABLE_NANOX) |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
99 #include <microwin/nano-X.h> |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
100 |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
101 /* The generic custom event structure */ |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
102 struct SDL_SysWMmsg { |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
103 SDL_version version; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
104 int data; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
105 }; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
106 |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
107 /* The windows custom window manager information structure */ |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
108 typedef struct { |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
109 SDL_version version ; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
110 GR_WINDOW_ID window ; /* The display window */ |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
111 } SDL_SysWMinfo; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
112 |
0 | 113 #elif defined(WIN32) |
438
f9c5f135a8b9
Added a way to get the Windows OpenGL context in SDL_syswm.h
Sam Lantinga <slouken@libsdl.org>
parents:
337
diff
changeset
|
114 #define WIN32_LEAN_AND_MEAN |
0 | 115 #include <windows.h> |
116 | |
117 /* The windows custom event structure */ | |
118 struct SDL_SysWMmsg { | |
119 SDL_version version; | |
120 HWND hwnd; /* The window for the message */ | |
121 UINT msg; /* The type of message */ | |
122 WPARAM wParam; /* WORD message parameter */ | |
123 LPARAM lParam; /* LONG message parameter */ | |
124 }; | |
125 | |
126 /* The windows custom window manager information structure */ | |
127 typedef struct { | |
128 SDL_version version; | |
129 HWND window; /* The Win32 display window */ | |
438
f9c5f135a8b9
Added a way to get the Windows OpenGL context in SDL_syswm.h
Sam Lantinga <slouken@libsdl.org>
parents:
337
diff
changeset
|
130 HGLRC hglrc; /* The OpenGL context, if any */ |
0 | 131 } SDL_SysWMinfo; |
132 | |
133 #else | |
134 | |
135 /* The generic custom event structure */ | |
136 struct SDL_SysWMmsg { | |
137 SDL_version version; | |
138 int data; | |
139 }; | |
140 | |
141 /* The generic custom window manager information structure */ | |
142 typedef struct { | |
143 SDL_version version; | |
144 int data; | |
145 } SDL_SysWMinfo; | |
146 | |
147 #endif /* OS type */ | |
148 | |
149 #endif /* SDL_PROTOTYPES_ONLY */ | |
150 | |
151 /* Function prototypes */ | |
152 /* | |
153 * This function gives you custom hooks into the window manager information. | |
154 * It fills the structure pointed to by 'info' with custom information and | |
155 * returns 1 if the function is implemented. If it's not implemented, or | |
156 * the version member of the 'info' structure is invalid, it returns 0. | |
157 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
158 extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info); |
0 | 159 |
160 | |
161 /* Ends C function definitions when using C++ */ | |
162 #ifdef __cplusplus | |
163 } | |
164 #endif | |
165 #include "close_code.h" | |
166 | |
167 #endif /* _SDL_syswm_h */ |