comparison src/video/os2fslib/SDL_os2fslib.h @ 1190:173c063d4f55

OS/2 port! This was mostly, if not entirely, written by "Doodle" and "Caetano": doodle@scenergy.dfmk.hu daniel@caetano.eng.br --ryan.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 23 Nov 2005 07:29:56 +0000
parents
children d910939febfa
comparison
equal deleted inserted replaced
1189:c96b326b90ba 1190:173c063d4f55
1 /*
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga
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
20 slouken@libsdl.org
21 */
22
23 #ifndef _SDL_os2fslib_h
24 #define _SDL_os2fslib_h
25
26
27 // OS2 specific includes
28 #define INCL_TYPES
29 #define INCL_DOS
30 #define INCL_DOSERRORS
31 #define INCL_DOSPROCESS
32 #define INCL_WIN
33 #define INCL_GPI
34 #include <os2.h>
35
36 #include <FSLib.h>
37
38 /* Hidden "this" pointer for the video functions */
39 #define _THIS SDL_VideoDevice *_this
40
41 /* Private display data */
42 struct SDL_PrivateVideoData
43 {
44 FSLib_VideoMode_p pAvailableFSLibVideoModes;
45 SDL_Rect **pListModesResult; // Allocated memory to return list of modes for os2fslib_ListModes() API
46
47 FSLib_VideoMode SrcBufferDesc; // Description of current source image buffer
48 char *pchSrcBuffer; // The source image buffer itself
49 SDL_Surface *pSDLSurface; // The SDL surface describing the buffer
50 HMTX hmtxUseSrcBuffer; // Mutex semaphore to manipulate src buffer
51 HWND hwndFrame, hwndClient; // Window handle of frame and client
52 int iPMThreadStatus; // 0: Not running
53 // 1: Running
54 // Other: Not running, had an error
55 int tidPMThread; // Thread ID of PM Thread
56 int fInFocus; // True if we're in focus!
57 int iSkipWMMOUSEMOVE; // Number of WM_MOUSEMOVE messages to skip!
58 int iMouseVisible; //
59 };
60
61 extern DECLSPEC void SDLCALL SDL_OS2FSLIB_SetFCFToUse(ULONG ulFCF);
62
63 #endif /* _SDL_os2fslib_h */