|
|
| version 1.3, 2003/11/22 12:49:49 | version 1.4, 2003/12/05 19:42:04 |
|---|---|
| Line 1 | Line 1 |
| #include "compiler.h" | #include "compiler.h" |
| #include "gx.h" | #include "gx.h" |
| #if !defined(GX_DLL) | |
| #ifndef SIZE_QVGA | #if defined(SIZE_QVGA) |
| #if defined(SUPPORT_SOFTKBD) | |
| enum { | enum { |
| WINDOW_WIDTH = 640, | WINDOW_WIDTH = 320, |
| WINDOW_HEIGHT = 400 | WINDOW_HEIGHT = 240 |
| }; | }; |
| #else | #else |
| enum { | enum { |
| WINDOW_WIDTH = 320, | WINDOW_WIDTH = 320, |
| WINDOW_HEIGHT = 240 | WINDOW_HEIGHT = 200 |
| }; | |
| #endif | |
| #else | |
| enum { | |
| WINDOW_WIDTH = 640, | |
| WINDOW_HEIGHT = 400 | |
| }; | }; |
| #endif | #endif |
| Line 353 GXKeyList GXGetDefaultKeys(int iOptions) | Line 361 GXKeyList GXGetDefaultKeys(int iOptions) |
| return(gxkl); | return(gxkl); |
| } | } |
| #endif | |