EMX compilation,

Minor doc changes,
  wxFileDialog optical things,
  wxMessageDlg dimension


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-08-18 15:23:15 +00:00
parent 9ce29a28cd
commit e6daf79489
9 changed files with 215 additions and 100 deletions

View File

@@ -64,22 +64,22 @@
#ifdef __SUN__
int usleep(unsigned int usec);
#else // !Sun
void usleep(unsigned long usec);
#endif // Sun/!Sun
#ifdef __EMX
/* I copied this from the XFree86 diffs. AV. */
#define INCL_DOSPROCESS
#include <os2.h>
void usleep(unsigned long delay)
{
DosSleep(delay ? (delay/1000l) : 1l);
}
#else
void usleep(unsigned long usec);
#endif
#endif // Sun/EMX/Something else
};
#define HAVE_USLEEP 1
#endif // Unices without usleep()
#ifdef __EMX__
/* I copied this from the XFree86 diffs. AV. */
//extern void DosSleep(unsigned long);
#define INCL_DOSPROCESS
#include <os2.h>
void usleep(unsigned long delay)
{
DosSleep(delay ? (delay/1000l) : 1l);
}
#endif
// ============================================================================
// implementation
// ============================================================================