#include "wx/setup.h"
#include "wx/utils.h"
#include "wx/app.h"
+#include "wx/apptrait.h"
#include <ctype.h>
void wxDisplaySize(int *width, int *height)
{
// TODO
+ if(width)
+ *width = 1024;
+ if(height)
+ *height = 768;
}
void wxDisplaySizeMM(int*,int*)
*height=768;
}
+int wxGUIAppTraits::GetOSVersion(int *verMaj, int *verMin)
+{
+ if(verMaj)
+ *verMaj=0;
+ if(verMin)
+ *verMin=0;
+ return 0;
+}
+
// Return TRUE if we have a colour display
bool wxColourDisplay()
{