|
|
| version 1.3, 2003/11/22 12:49:49 | version 1.6, 2005/02/11 21:17:23 |
|---|---|
| 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 | |
| #if defined(SUPPORT_SOFTKBD) | |
| enum { | |
| WINDOW_WIDTH = 640, | |
| WINDOW_HEIGHT = 480 | |
| }; | }; |
| #else | |
| enum { | |
| WINDOW_WIDTH = 640, | |
| WINDOW_HEIGHT = 400 | |
| }; | |
| #endif | |
| #endif | #endif |
| #pragma pack(push, 1) | #pragma pack(push, 1) |
| Line 33 enum { | Line 48 enum { |
| }; | }; |
| #if defined(_WIN32_WCE) | #if defined(_WIN32_WCE) |
| static const TCHAR taskbarclass[] = STRLITERAL("HHTaskBar"); | static const TCHAR taskbarclass[] = _T("HHTaskBar"); |
| #else | #else |
| static const TCHAR taskbarclass[] = STRLITERAL("Shell_TrayWnd"); | static const TCHAR taskbarclass[] = _T("Shell_TrayWnd"); |
| #endif | #endif |
| Line 353 GXKeyList GXGetDefaultKeys(int iOptions) | Line 368 GXKeyList GXGetDefaultKeys(int iOptions) |
| return(gxkl); | return(gxkl); |
| } | } |
| #endif | |