+#define wxHAS_HUGE_FILES
+
+//------------------------------------------------------------------------
+// Check for use of MSLU
+//------------------------------------------------------------------------
+
+#if wxUSE_BASE
+
+bool WXDLLIMPEXP_BASE wxUsingUnicowsDll()
+{
+#if wxUSE_UNICODE_MSLU
+ return (wxGetOsVersion() == wxOS_WINDOWS_9X);
+#else
+ return false;
+#endif
+}
+
+#endif // wxUSE_BASE
+
+