2001-04-26 16:45:43 +00:00
|
|
|
/*
|
|
|
|
SDL - Simple DirectMedia Layer
|
2006-02-01 06:32:25 +00:00
|
|
|
Copyright (C) 1997-2006 Sam Lantinga
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2006-02-01 06:32:25 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2001-04-26 16:45:43 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2006-02-01 06:32:25 +00:00
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
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
|
2006-02-01 06:32:25 +00:00
|
|
|
Lesser General Public License for more details.
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-02-01 06:32:25 +00:00
|
|
|
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
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
Sam Lantinga
|
2001-12-14 12:37:47 +00:00
|
|
|
slouken@libsdl.org
|
2001-04-26 16:45:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Include file for SDL custom system window manager hooks */
|
|
|
|
|
|
|
|
#ifndef _SDL_syswm_h
|
|
|
|
#define _SDL_syswm_h
|
|
|
|
|
2006-02-10 03:19:02 +00:00
|
|
|
#include "SDL_stdinc.h"
|
2006-02-10 06:48:43 +00:00
|
|
|
#include "SDL_error.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
#include "SDL_version.h"
|
|
|
|
|
|
|
|
#include "begin_code.h"
|
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Your application has access to a special type of event 'SDL_SYSWMEVENT',
|
|
|
|
which contains window-manager specific information and arrives whenever
|
|
|
|
an unhandled window event occurs. This event is ignored by default, but
|
|
|
|
you can enable it with SDL_EventState()
|
|
|
|
*/
|
|
|
|
#ifdef SDL_PROTOTYPES_ONLY
|
|
|
|
struct SDL_SysWMinfo;
|
|
|
|
typedef struct SDL_SysWMinfo SDL_SysWMinfo;
|
|
|
|
#else
|
|
|
|
|
2006-02-16 10:11:48 +00:00
|
|
|
/* This is the structure for custom window manager events */
|
Fixed bug #176
[I'm fixing this for the public headers, but I'm not going to bother for the SDL library code (yet)]
To clarify: Normaly, GCC (or, to be precise, the preprocessor) will ignore
this, and compile the code happily. However, one can specify -Wundef to get a
warning about this.
One can probably argue whether to consider this a bug or not; but I think that
(a) from a semantic point of view, using "#if FOO" when FOO is not defined is
strange, and (b) since it is possible to trigger a warning about this, and a
trivial fix exists, it should be corrected.
I can think of two alternative patches, BTW:
1) Simply use #define HAVE_FOO 0, instead of not defining HAVE_FOO at all
2) Change
#if HAVE_FOO
to
#if HAVE_FOO+0
which always does the right thing.
But I think I still prefer the attached patch :-).
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401633
2006-04-13 13:38:40 +00:00
|
|
|
#if defined(SDL_VIDEO_DRIVER_X11)
|
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
To: SDL Developers <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Mon, 30 May 2005 23:29:04 +0200
Subject: [SDL] Mac OS X Video Drivers [patch]
I've updated/added the Carbon and X11 video drivers
to the Mac OS X port of SDL 1.2 (the CVS version),
and made the Cocoa driver and runtime *optional*.
The default is still Cocoa, and the "Quartz" driver.
But you can now also use "toolbox" for Carbon, and
"x11" for running with Apple's (or other) X11 server:
export SDL_VIDEODRIVER=x11
export SDL_VIDEO_GL_DRIVER=/usr/X11R6/lib/libGL.dylib
It also checks if the frameworks are available, by a:
#include <Carbon/Carbon.h> or #import <Cocoa/Cocoa.h>
(this should make it configure on plain Darwin as well?)
Here are the new configure targets:
--enable-video-cocoa use Cocoa/Quartz video driver default=yes
--enable-video-carbon use Carbon/QuickDraw video driver default=yes
--enable-video-x11 use X11 video driver default=no
./configure --enable-video-cocoa --enable-video-carbon
--enable-video-x11 \
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
The Carbon version is just an updated version of the old
SDL driver for Mac OS 9, and could probably be improved...
(but it does work, including the Carbon version of SDLmain)
If you disable cocoa, you can run with -framework Carbon only,
and the C version of SDL_main.c. And if you disable carbon too,
you can still use the X11 version which doesn't require SDLmain.
I updated the DrawSprocket version, but did not include it.
(no blitters or VRAM GWorlds etc. available on OS X anyway)
Besides for Mac OS 9, I don't think there's any use for it ?
And note that any performance on Mac OS X equals OpenGL anyway...
You can get "fair" software SDL results on captured CG displays,
but for decent frame rates you need to be using GL for rendering.
Finally, here is the patch itself:
http://www.algonet.se/~afb/SDL-12CVS-macvideo.patch
--anders
PS. It says "video", but as usual it applies to mouse/keyboard too.
------
To: A list for developers using the SDL library <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Sun, 4 Sep 2005 10:02:15 +0200
Subject: [SDL] Updated Mac patch
Updated the previous Mac patch to disable Carbon by default.
Also "fixed" the SDL.spec again, so that it builds on Darwin.
http://www.algonet.se/~afb/SDL-1.2.9-mac.patch
Also applied fine to SDL12 CVS, when I tried it.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401136
2005-09-08 06:16:14 +00:00
|
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
2006-03-09 06:33:21 +00:00
|
|
|
/* conflicts with Quickdraw.h */
|
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
To: SDL Developers <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Mon, 30 May 2005 23:29:04 +0200
Subject: [SDL] Mac OS X Video Drivers [patch]
I've updated/added the Carbon and X11 video drivers
to the Mac OS X port of SDL 1.2 (the CVS version),
and made the Cocoa driver and runtime *optional*.
The default is still Cocoa, and the "Quartz" driver.
But you can now also use "toolbox" for Carbon, and
"x11" for running with Apple's (or other) X11 server:
export SDL_VIDEODRIVER=x11
export SDL_VIDEO_GL_DRIVER=/usr/X11R6/lib/libGL.dylib
It also checks if the frameworks are available, by a:
#include <Carbon/Carbon.h> or #import <Cocoa/Cocoa.h>
(this should make it configure on plain Darwin as well?)
Here are the new configure targets:
--enable-video-cocoa use Cocoa/Quartz video driver default=yes
--enable-video-carbon use Carbon/QuickDraw video driver default=yes
--enable-video-x11 use X11 video driver default=no
./configure --enable-video-cocoa --enable-video-carbon
--enable-video-x11 \
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
The Carbon version is just an updated version of the old
SDL driver for Mac OS 9, and could probably be improved...
(but it does work, including the Carbon version of SDLmain)
If you disable cocoa, you can run with -framework Carbon only,
and the C version of SDL_main.c. And if you disable carbon too,
you can still use the X11 version which doesn't require SDLmain.
I updated the DrawSprocket version, but did not include it.
(no blitters or VRAM GWorlds etc. available on OS X anyway)
Besides for Mac OS 9, I don't think there's any use for it ?
And note that any performance on Mac OS X equals OpenGL anyway...
You can get "fair" software SDL results on captured CG displays,
but for decent frame rates you need to be using GL for rendering.
Finally, here is the patch itself:
http://www.algonet.se/~afb/SDL-12CVS-macvideo.patch
--anders
PS. It says "video", but as usual it applies to mouse/keyboard too.
------
To: A list for developers using the SDL library <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Sun, 4 Sep 2005 10:02:15 +0200
Subject: [SDL] Updated Mac patch
Updated the previous Mac patch to disable Carbon by default.
Also "fixed" the SDL.spec again, so that it builds on Darwin.
http://www.algonet.se/~afb/SDL-1.2.9-mac.patch
Also applied fine to SDL12 CVS, when I tried it.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401136
2005-09-08 06:16:14 +00:00
|
|
|
#define Cursor X11Cursor
|
|
|
|
#endif
|
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
To: SDL Developers <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Mon, 30 May 2005 23:29:04 +0200
Subject: [SDL] Mac OS X Video Drivers [patch]
I've updated/added the Carbon and X11 video drivers
to the Mac OS X port of SDL 1.2 (the CVS version),
and made the Cocoa driver and runtime *optional*.
The default is still Cocoa, and the "Quartz" driver.
But you can now also use "toolbox" for Carbon, and
"x11" for running with Apple's (or other) X11 server:
export SDL_VIDEODRIVER=x11
export SDL_VIDEO_GL_DRIVER=/usr/X11R6/lib/libGL.dylib
It also checks if the frameworks are available, by a:
#include <Carbon/Carbon.h> or #import <Cocoa/Cocoa.h>
(this should make it configure on plain Darwin as well?)
Here are the new configure targets:
--enable-video-cocoa use Cocoa/Quartz video driver default=yes
--enable-video-carbon use Carbon/QuickDraw video driver default=yes
--enable-video-x11 use X11 video driver default=no
./configure --enable-video-cocoa --enable-video-carbon
--enable-video-x11 \
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
The Carbon version is just an updated version of the old
SDL driver for Mac OS 9, and could probably be improved...
(but it does work, including the Carbon version of SDLmain)
If you disable cocoa, you can run with -framework Carbon only,
and the C version of SDL_main.c. And if you disable carbon too,
you can still use the X11 version which doesn't require SDLmain.
I updated the DrawSprocket version, but did not include it.
(no blitters or VRAM GWorlds etc. available on OS X anyway)
Besides for Mac OS 9, I don't think there's any use for it ?
And note that any performance on Mac OS X equals OpenGL anyway...
You can get "fair" software SDL results on captured CG displays,
but for decent frame rates you need to be using GL for rendering.
Finally, here is the patch itself:
http://www.algonet.se/~afb/SDL-12CVS-macvideo.patch
--anders
PS. It says "video", but as usual it applies to mouse/keyboard too.
------
To: A list for developers using the SDL library <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Sun, 4 Sep 2005 10:02:15 +0200
Subject: [SDL] Updated Mac patch
Updated the previous Mac patch to disable Carbon by default.
Also "fixed" the SDL.spec again, so that it builds on Darwin.
http://www.algonet.se/~afb/SDL-1.2.9-mac.patch
Also applied fine to SDL12 CVS, when I tried it.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401136
2005-09-08 06:16:14 +00:00
|
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
2006-03-09 06:33:21 +00:00
|
|
|
/* matches the re-define above */
|
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
To: SDL Developers <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Mon, 30 May 2005 23:29:04 +0200
Subject: [SDL] Mac OS X Video Drivers [patch]
I've updated/added the Carbon and X11 video drivers
to the Mac OS X port of SDL 1.2 (the CVS version),
and made the Cocoa driver and runtime *optional*.
The default is still Cocoa, and the "Quartz" driver.
But you can now also use "toolbox" for Carbon, and
"x11" for running with Apple's (or other) X11 server:
export SDL_VIDEODRIVER=x11
export SDL_VIDEO_GL_DRIVER=/usr/X11R6/lib/libGL.dylib
It also checks if the frameworks are available, by a:
#include <Carbon/Carbon.h> or #import <Cocoa/Cocoa.h>
(this should make it configure on plain Darwin as well?)
Here are the new configure targets:
--enable-video-cocoa use Cocoa/Quartz video driver default=yes
--enable-video-carbon use Carbon/QuickDraw video driver default=yes
--enable-video-x11 use X11 video driver default=no
./configure --enable-video-cocoa --enable-video-carbon
--enable-video-x11 \
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
The Carbon version is just an updated version of the old
SDL driver for Mac OS 9, and could probably be improved...
(but it does work, including the Carbon version of SDLmain)
If you disable cocoa, you can run with -framework Carbon only,
and the C version of SDL_main.c. And if you disable carbon too,
you can still use the X11 version which doesn't require SDLmain.
I updated the DrawSprocket version, but did not include it.
(no blitters or VRAM GWorlds etc. available on OS X anyway)
Besides for Mac OS 9, I don't think there's any use for it ?
And note that any performance on Mac OS X equals OpenGL anyway...
You can get "fair" software SDL results on captured CG displays,
but for decent frame rates you need to be using GL for rendering.
Finally, here is the patch itself:
http://www.algonet.se/~afb/SDL-12CVS-macvideo.patch
--anders
PS. It says "video", but as usual it applies to mouse/keyboard too.
------
To: A list for developers using the SDL library <sdl@libsdl.org>
From: =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb@algonet.se>
Date: Sun, 4 Sep 2005 10:02:15 +0200
Subject: [SDL] Updated Mac patch
Updated the previous Mac patch to disable Carbon by default.
Also "fixed" the SDL.spec again, so that it builds on Darwin.
http://www.algonet.se/~afb/SDL-1.2.9-mac.patch
Also applied fine to SDL12 CVS, when I tried it.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401136
2005-09-08 06:16:14 +00:00
|
|
|
#undef Cursor
|
|
|
|
#endif
|
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
/* These are the various supported subsystems under UNIX */
|
|
|
|
typedef enum {
|
|
|
|
SDL_SYSWM_X11
|
|
|
|
} SDL_SYSWM_TYPE;
|
|
|
|
|
|
|
|
/* The UNIX custom event structure */
|
|
|
|
struct SDL_SysWMmsg {
|
|
|
|
SDL_version version;
|
|
|
|
SDL_SYSWM_TYPE subsystem;
|
|
|
|
union {
|
|
|
|
XEvent xevent;
|
|
|
|
} event;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The UNIX custom window manager information structure.
|
|
|
|
When this structure is returned, it holds information about which
|
|
|
|
low level system it is using, and will be one of SDL_SYSWM_TYPE.
|
|
|
|
*/
|
2004-07-18 22:57:40 +00:00
|
|
|
typedef struct SDL_SysWMinfo {
|
2001-04-26 16:45:43 +00:00
|
|
|
SDL_version version;
|
|
|
|
SDL_SYSWM_TYPE subsystem;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
Display *display; /* The X11 display */
|
|
|
|
Window window; /* The X11 display window */
|
|
|
|
/* These locking functions should be called around
|
2006-09-24 00:08:28 +00:00
|
|
|
any X11 functions using the display variable,
|
|
|
|
but not the gfxdisplay variable.
|
2001-04-26 16:45:43 +00:00
|
|
|
They lock the event thread, so should not be
|
|
|
|
called around event functions or from event filters.
|
|
|
|
*/
|
|
|
|
void (*lock_func)(void);
|
|
|
|
void (*unlock_func)(void);
|
|
|
|
|
|
|
|
/* Introduced in SDL 1.0.2 */
|
|
|
|
Window fswindow; /* The X11 fullscreen window */
|
|
|
|
Window wmwindow; /* The X11 managed input window */
|
2006-09-24 00:08:28 +00:00
|
|
|
|
|
|
|
/* Introduced in SDL 1.2.12 */
|
|
|
|
Display *gfxdisplay; /* The X11 display to which rendering is done */
|
2001-04-26 16:45:43 +00:00
|
|
|
} x11;
|
|
|
|
} info;
|
|
|
|
} SDL_SysWMinfo;
|
|
|
|
|
Fixed bug #176
[I'm fixing this for the public headers, but I'm not going to bother for the SDL library code (yet)]
To clarify: Normaly, GCC (or, to be precise, the preprocessor) will ignore
this, and compile the code happily. However, one can specify -Wundef to get a
warning about this.
One can probably argue whether to consider this a bug or not; but I think that
(a) from a semantic point of view, using "#if FOO" when FOO is not defined is
strange, and (b) since it is possible to trigger a warning about this, and a
trivial fix exists, it should be corrected.
I can think of two alternative patches, BTW:
1) Simply use #define HAVE_FOO 0, instead of not defining HAVE_FOO at all
2) Change
#if HAVE_FOO
to
#if HAVE_FOO+0
which always does the right thing.
But I think I still prefer the attached patch :-).
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401633
2006-04-13 13:38:40 +00:00
|
|
|
#elif defined(SDL_VIDEO_DRIVER_NANOX)
|
2001-05-11 01:13:35 +00:00
|
|
|
#include <microwin/nano-X.h>
|
|
|
|
|
|
|
|
/* The generic custom event structure */
|
|
|
|
struct SDL_SysWMmsg {
|
|
|
|
SDL_version version;
|
|
|
|
int data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The windows custom window manager information structure */
|
2004-07-18 22:57:40 +00:00
|
|
|
typedef struct SDL_SysWMinfo {
|
2001-05-11 01:13:35 +00:00
|
|
|
SDL_version version ;
|
|
|
|
GR_WINDOW_ID window ; /* The display window */
|
|
|
|
} SDL_SysWMinfo;
|
|
|
|
|
2006-05-03 04:11:38 +00:00
|
|
|
#elif defined(SDL_VIDEO_DRIVER_WINDIB) || defined(SDL_VIDEO_DRIVER_DDRAW) || defined(SDL_VIDEO_DRIVER_GAPI)
|
2006-02-25 22:18:25 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
/* The windows custom event structure */
|
|
|
|
struct SDL_SysWMmsg {
|
|
|
|
SDL_version version;
|
|
|
|
HWND hwnd; /* The window for the message */
|
|
|
|
UINT msg; /* The type of message */
|
|
|
|
WPARAM wParam; /* WORD message parameter */
|
|
|
|
LPARAM lParam; /* LONG message parameter */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The windows custom window manager information structure */
|
2004-07-18 22:57:40 +00:00
|
|
|
typedef struct SDL_SysWMinfo {
|
2001-04-26 16:45:43 +00:00
|
|
|
SDL_version version;
|
|
|
|
HWND window; /* The Win32 display window */
|
2002-08-17 17:49:27 +00:00
|
|
|
HGLRC hglrc; /* The OpenGL context, if any */
|
2001-04-26 16:45:43 +00:00
|
|
|
} SDL_SysWMinfo;
|
|
|
|
|
Fixed bug #176
[I'm fixing this for the public headers, but I'm not going to bother for the SDL library code (yet)]
To clarify: Normaly, GCC (or, to be precise, the preprocessor) will ignore
this, and compile the code happily. However, one can specify -Wundef to get a
warning about this.
One can probably argue whether to consider this a bug or not; but I think that
(a) from a semantic point of view, using "#if FOO" when FOO is not defined is
strange, and (b) since it is possible to trigger a warning about this, and a
trivial fix exists, it should be corrected.
I can think of two alternative patches, BTW:
1) Simply use #define HAVE_FOO 0, instead of not defining HAVE_FOO at all
2) Change
#if HAVE_FOO
to
#if HAVE_FOO+0
which always does the right thing.
But I think I still prefer the attached patch :-).
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401633
2006-04-13 13:38:40 +00:00
|
|
|
#elif defined(SDL_VIDEO_DRIVER_RISCOS)
|
2003-05-29 04:44:13 +00:00
|
|
|
|
|
|
|
/* RISC OS custom event structure */
|
|
|
|
struct SDL_SysWMmsg {
|
|
|
|
SDL_version version;
|
|
|
|
int eventCode; /* The window for the message */
|
|
|
|
int pollBlock[64];
|
|
|
|
};
|
|
|
|
|
2005-02-12 18:01:31 +00:00
|
|
|
/* The RISC OS custom window manager information structure */
|
2004-07-18 22:57:40 +00:00
|
|
|
typedef struct SDL_SysWMinfo {
|
2003-05-29 04:44:13 +00:00
|
|
|
SDL_version version;
|
|
|
|
int wimpVersion; /* Wimp version running under */
|
2005-02-12 18:01:31 +00:00
|
|
|
int taskHandle; /* The RISC OS task handle */
|
|
|
|
int window; /* The RISC OS display window */
|
2003-05-29 04:44:13 +00:00
|
|
|
} SDL_SysWMinfo;
|
|
|
|
|
Fixed bug #176
[I'm fixing this for the public headers, but I'm not going to bother for the SDL library code (yet)]
To clarify: Normaly, GCC (or, to be precise, the preprocessor) will ignore
this, and compile the code happily. However, one can specify -Wundef to get a
warning about this.
One can probably argue whether to consider this a bug or not; but I think that
(a) from a semantic point of view, using "#if FOO" when FOO is not defined is
strange, and (b) since it is possible to trigger a warning about this, and a
trivial fix exists, it should be corrected.
I can think of two alternative patches, BTW:
1) Simply use #define HAVE_FOO 0, instead of not defining HAVE_FOO at all
2) Change
#if HAVE_FOO
to
#if HAVE_FOO+0
which always does the right thing.
But I think I still prefer the attached patch :-).
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401633
2006-04-13 13:38:40 +00:00
|
|
|
#elif defined(SDL_VIDEO_DRIVER_PHOTON)
|
2004-03-04 05:41:57 +00:00
|
|
|
#include <sys/neutrino.h>
|
|
|
|
#include <Ph.h>
|
|
|
|
|
|
|
|
/* The QNX custom event structure */
|
|
|
|
struct SDL_SysWMmsg {
|
|
|
|
SDL_version version;
|
|
|
|
int data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The QNX custom window manager information structure */
|
2004-07-18 22:57:40 +00:00
|
|
|
typedef struct SDL_SysWMinfo {
|
2004-03-04 05:41:57 +00:00
|
|
|
SDL_version version;
|
|
|
|
int data;
|
|
|
|
} SDL_SysWMinfo;
|
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
/* The generic custom event structure */
|
|
|
|
struct SDL_SysWMmsg {
|
|
|
|
SDL_version version;
|
|
|
|
int data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The generic custom window manager information structure */
|
2004-07-18 22:57:40 +00:00
|
|
|
typedef struct SDL_SysWMinfo {
|
2001-04-26 16:45:43 +00:00
|
|
|
SDL_version version;
|
|
|
|
int data;
|
|
|
|
} SDL_SysWMinfo;
|
|
|
|
|
2006-02-16 10:11:48 +00:00
|
|
|
#endif /* video driver type */
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
#endif /* SDL_PROTOTYPES_ONLY */
|
|
|
|
|
|
|
|
/* Function prototypes */
|
|
|
|
/*
|
|
|
|
* This function gives you custom hooks into the window manager information.
|
|
|
|
* It fills the structure pointed to by 'info' with custom information and
|
|
|
|
* returns 1 if the function is implemented. If it's not implemented, or
|
|
|
|
* the version member of the 'info' structure is invalid, it returns 0.
|
2004-11-30 15:21:29 +00:00
|
|
|
*
|
|
|
|
* You typically use this function like this:
|
|
|
|
* SDL_SysWMInfo info;
|
|
|
|
* SDL_VERSION(&info.version);
|
|
|
|
* if ( SDL_GetWMInfo(&info) ) { ... }
|
2001-04-26 16:45:43 +00:00
|
|
|
*/
|
2002-04-11 14:35:16 +00:00
|
|
|
extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#include "close_code.h"
|
|
|
|
|
|
|
|
#endif /* _SDL_syswm_h */
|