e273151278
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// 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$
|
|
// 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;
|
|
}
|
|
|