Compilation fixes for wxMGL
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33823 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -54,11 +54,15 @@ void wxSleep(int nSecs)
|
||||
wxUsleep(1000 * nSecs);
|
||||
}
|
||||
|
||||
void wxUsleep(unsigned long milliseconds)
|
||||
void wxMilliSleep(unsigned long milliseconds)
|
||||
{
|
||||
PM_sleep(milliseconds);
|
||||
}
|
||||
|
||||
void wxMicroSleep(unsigned long microseconds)
|
||||
{
|
||||
wxMilliSleep(microseconds/1000);
|
||||
}
|
||||
|
||||
bool wxGetEnv(const wxString& var, wxString *value)
|
||||
{
|
||||
@@ -141,7 +145,7 @@ bool wxGetFullHostName(wxChar *WXUNUSED(buf), int WXUNUSED(sz))
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
int wxKill(long WXUNUSED(pid), wxSignal WXUNUSED(sig), wxKillError *WXUNUSED(rc))
|
||||
int wxKill(long WXUNUSED(pid), wxSignal WXUNUSED(sig), wxKillError *WXUNUSED(rc), int WXUNUSED(flags))
|
||||
{
|
||||
wxFAIL_MSG( wxT("wxKill not implemented under MS-DOS!") );
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user