-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbase.cpp
More file actions
55 lines (42 loc) · 1.51 KB
/
base.cpp
File metadata and controls
55 lines (42 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
///////////////////////////////////////////////////////////////////////////////
// Name: src/palmos/basemsw.cpp
// Purpose: misc stuff only used in applications under PalmOS
// Author: William Osborne - minimal working wxPalmOS port
// Modified by:
// Created: 10.13.2004
// RCS-ID: $Id: base.cpp 31557 2005-01-21 21:04:05Z ABX $
// Copyright: (c) 2004 William Osborne
// License: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
// declarations
// ============================================================================
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
// for compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#endif //WX_PRECOMP
#include "wx/apptrait.h"
#include "wx/recguard.h"
// ============================================================================
// wxConsoleAppTraits implementation
// ============================================================================
void wxConsoleAppTraits::AlwaysYield()
{
}
void *wxConsoleAppTraits::BeforeChildWaitLoop()
{
return NULL;
}
void wxConsoleAppTraits::AfterChildWaitLoop(void * WXUNUSED(data))
{
}
bool wxConsoleAppTraits::DoMessageFromThreadWait()
{
return true;
}