#include "MoreFiles.h"
#include "MoreFilesExtras.h"
+#ifndef __DARWIN__
+#include <Threads.h>
+#include <Sound.h>
+#endif
+
#ifndef __DARWIN__
// defined in unix/utilsunx.cpp for Mac OS X
int wxGetOsVersion(int *majorVsn, int *minorVsn)
{
- long theSystem ;
- Gestalt(gestaltSystemVersion, &theSystem) ;
- *minorVsn = (theSystem & 0xFF ) ;
- *majorVsn = (theSystem >> 8 ) ; // are there x-platform conventions ?
- return wxMACINTOSH;
+ long theSystem ;
+
+ // are there x-platform conventions ?
+
+ Gestalt(gestaltSystemVersion, &theSystem) ;
+ if (minorVsn != NULL) {
+ *minorVsn = (theSystem & 0xFF ) ;
+ }
+ if (majorVsn != NULL) {
+ *majorVsn = (theSystem >> 8 ) ;
+ }
+#ifdef __DARWIN__
+ return wxMAC_DARWIN;
+#else
+ return wxMAC;
+#endif
}
// Reading and writing resources (eg WIN.INI, .Xdefaults)