]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: src/palmos/base.cpp |
ffecfa5a | 3 | // Purpose: misc stuff only used in applications under PalmOS |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10.13.2004 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a | 8 | // Copyright: (c) 2004 William Osborne |
526954c5 | 9 | // Licence: wxWindows licence |
ffecfa5a JS |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // for compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #endif //WX_PRECOMP | |
29 | ||
30 | #include "wx/apptrait.h" | |
ffecfa5a | 31 | #include "wx/recguard.h" |
e2fc40b4 | 32 | #include "wx/evtloop.h" // wxEventLoop |
ffecfa5a JS |
33 | |
34 | // ============================================================================ | |
35 | // wxConsoleAppTraits implementation | |
36 | // ============================================================================ | |
37 | ||
ffecfa5a JS |
38 | void *wxConsoleAppTraits::BeforeChildWaitLoop() |
39 | { | |
40 | return NULL; | |
41 | } | |
42 | ||
43 | void wxConsoleAppTraits::AfterChildWaitLoop(void * WXUNUSED(data)) | |
44 | { | |
45 | } | |
46 | ||
dd1af40c | 47 | #if wxUSE_THREADS |
ffecfa5a JS |
48 | bool wxConsoleAppTraits::DoMessageFromThreadWait() |
49 | { | |
50 | return true; | |
51 | } | |
52 | ||
e2fc40b4 VZ |
53 | WXDWORD wxConsoleAppTraits::WaitForThread(WXHANDLE hThread) |
54 | { | |
55 | // TODO | |
56 | return 0; | |
57 | } | |
dd1af40c | 58 | #endif // wxUSE_THREADS |
e2fc40b4 VZ |
59 | |
60 | #if wxUSE_CONSOLE_EVENTLOOP | |
61 | wxEventLoopBase * | |
62 | wxConsoleAppTraits::CreateEventLoop() | |
63 | { | |
64 | return new wxEventLoop; | |
65 | } | |
66 | #endif // wxUSE_CONSOLE_EVENTLOOP | |
67 |