00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00029 #ifndef _SDL_syswm_h
00030 #define _SDL_syswm_h
00031
00032 #include "SDL_stdinc.h"
00033 #include "SDL_error.h"
00034 #include "SDL_video.h"
00035 #include "SDL_version.h"
00036
00037 #include "begin_code.h"
00038
00039 #ifdef __cplusplus
00040
00041 extern "C" {
00042
00043 #endif
00044
00045
00046
00047
00048
00049
00050 #ifdef SDL_PROTOTYPES_ONLY
00051 struct SDL_SysWMinfo;
00052 #else
00053
00054
00055 #if defined(SDL_VIDEO_DRIVER_X11)
00056 #if defined(__APPLE__) && defined(__MACH__)
00057
00058 #define Cursor X11Cursor
00059 #endif
00060
00061 #include <X11/Xlib.h>
00062 #include <X11/Xatom.h>
00063
00064 #if defined(__APPLE__) && defined(__MACH__)
00065
00066 #undef Cursor
00067 #endif
00068
00069
00070 typedef enum
00071 {
00072 SDL_SYSWM_X11
00073 } SDL_SYSWM_TYPE;
00074
00075
00076 struct SDL_SysWMmsg
00077 {
00078 SDL_version version;
00079 SDL_SYSWM_TYPE subsystem;
00080 union
00081 {
00082 XEvent xevent;
00083 } event;
00084 };
00085
00086
00087
00088
00089
00090 struct SDL_SysWMinfo
00091 {
00092 SDL_version version;
00093 SDL_SYSWM_TYPE subsystem;
00094 union
00095 {
00096 struct
00097 {
00098 Display *display;
00099 Window window;
00100
00101
00102
00103
00104
00105 void (*lock_func) (void);
00106 void (*unlock_func) (void);
00107
00108
00109 Window fswindow;
00110 Window wmwindow;
00111 } x11;
00112 } info;
00113 };
00114
00115 #elif defined(SDL_VIDEO_DRIVER_WIN32)
00116 #define WIN32_LEAN_AND_MEAN
00117 #include <windows.h>
00118
00119
00120 struct SDL_SysWMmsg
00121 {
00122 SDL_version version;
00123 HWND hwnd;
00124 UINT msg;
00125 WPARAM wParam;
00126 LPARAM lParam;
00127 };
00128
00129
00130 struct SDL_SysWMinfo
00131 {
00132 SDL_version version;
00133 HWND window;
00134 };
00135
00136 #elif defined(SDL_VIDEO_DRIVER_RISCOS)
00137
00138
00139 struct SDL_SysWMmsg
00140 {
00141 SDL_version version;
00142 int eventCode;
00143 int pollBlock[64];
00144 };
00145
00146
00147 struct SDL_SysWMinfo
00148 {
00149 SDL_version version;
00150 int wimpVersion;
00151 int taskHandle;
00152 int window;
00153 };
00154
00155 #elif defined(SDL_VIDEO_DRIVER_PHOTON) || defined(SDL_VIDEO_DRIVER_QNXGF)
00156 #include <sys/neutrino.h>
00157 #if defined(SDL_VIDEO_OPENGL_ES)
00158 #include <gf/gf.h>
00159 #endif
00160 #include <Ph.h>
00161
00162
00163 struct SDL_SysWMmsg
00164 {
00165 SDL_version version;
00166 int data;
00167 };
00168
00169
00170 struct SDL_SysWMinfo
00171 {
00172 SDL_version version;
00173 int data;
00174 };
00175
00176 #else
00177
00178
00179 struct SDL_SysWMmsg
00180 {
00181 SDL_version version;
00182 int data;
00183 };
00184
00185
00186 struct SDL_SysWMinfo
00187 {
00188 SDL_version version;
00189 int data;
00190 };
00191
00192 #endif
00193
00194 #endif
00195
00196 typedef struct SDL_SysWMinfo SDL_SysWMinfo;
00197
00198
00216 extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowWMInfo(SDL_WindowID windowID,
00217 SDL_SysWMinfo * info);
00218
00219
00220
00221 #ifdef __cplusplus
00222
00223 }
00224
00225 #endif
00226 #include "close_code.h"
00227
00228 #endif
00229
00230