Mercurial > sdl-ios-xcode
annotate README.WinCE @ 631:52864d66d168
Date: Mon, 5 May 2003 00:08:51 -0400
From: Darrell Walisser
Subject: SDL Active Events Patch
Hi Guys,
I was reading sdl-devel the other day and remembered we don't handle
SDL_APPACTIVE and SDL_APPMOUSEFOCUS. I hacked together a quick patch to
do just this. One thing to note - there are actually two ways to
"iconify" the SDL window (which sets SDL_APPACTIVE): hiding the entire
application (for example, option-click on some other window) and
minimizing the window to the dock. I treat both as SDL_APPACTIVE, since
the window is no longer visible.
Cheers,
Darrell
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 29 May 2003 04:52:36 +0000 |
parents | a6fa62b1be09 |
children | 86d0d01290ea |
rev | line source |
---|---|
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
1 |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
2 Project files for embedded Visual C++ 4.0 can be found in VisualCE.zip |
0 | 3 |
4 NOTE: | |
5 There are several SDL features not available in the WinCE port of SDL. | |
6 | |
7 - DirectX is not yet available | |
8 - Semaphores are not available | |
9 - Joystick support is not available | |
10 - CD-ROM control is not available | |
11 | |
12 In addition, there are several features that run in "degraded" mode: | |
13 | |
14 Preprocessor Symbol Effect | |
15 =================== ================================= | |
16 | |
17 SDL_systimer.c: | |
18 USE_GETTICKCOUNT Less accurate values for SDL time functions | |
19 USE_SETTIMER Use only a single marginally accurate timer | |
20 | |
21 SDL_syswm.c: | |
22 DISABLE_ICON_SUPPORT Can't set the runtime window icon | |
23 | |
24 SDL_sysmouse.c: | |
25 USE_STATIC_CURSOR Only the arrow cursor is available | |
26 | |
27 SDL_sysevents.c: | |
28 NO_GETKEYBOARDSTATE Can't get modifier state on keyboard focus | |
29 | |
30 SDL_dibevents.c: | |
31 NO_GETKEYBOARDSTATE Very limited keycode translation | |
32 | |
33 SDL_dibvideo.c: | |
34 NO_GETDIBITS Can't distinguish between 15 bpp and 16 bpp | |
35 NO_CHANGEDISPLAYSETTINGS No fullscreen support | |
36 NO_GAMMA_SUPPORT Gamma correction not available |