1. wxBase compiles/links again
2. wxString::reserve() (STLese for Alloc()) added 3. compilation fixes for mingw32/BC++ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -60,6 +60,32 @@ static size_t gs_nInitCount = 0;
|
||||
// implementation
|
||||
// ============================================================================
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// stubs for some GUI functions
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
void WXDLLEXPORT wxExit()
|
||||
{
|
||||
abort();
|
||||
}
|
||||
|
||||
// Yield to other apps/messages
|
||||
bool WXDLLEXPORT wxYield()
|
||||
{
|
||||
// do nothing
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Yield to other apps/messages
|
||||
void WXDLLEXPORT wxWakeUpIdle()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxBase-specific functions
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
bool WXDLLEXPORT wxInitialize()
|
||||
{
|
||||
if ( gs_nInitCount )
|
||||
|
Reference in New Issue
Block a user