Alien-wxWidgets

 view release on metacpan or  search on metacpan

patches/wxMSW-2.8.10-version.patch  view on Meta::CPAN

+// RCS-ID:      $Id$
 // Copyright:   (c) 2000 Vadim Zeitlin
 // Licence:     wxWidgets license
 ///////////////////////////////////////////////////////////////////////////////
@@ -25,10 +25,16 @@
     #define DLL_FLAGS 0x0L
 #endif
 
+// 0x0409 is US English, 0x04b0 is Unicode and 0x0000 is 7 bit ASCII. see
+// http://msdn.microsoft.com/en-us/library/aa381049(VS.85).aspx for the full
+// list of languages and charsets
+#define LANG 0x0409
 #ifdef _UNICODE
-    #define LANG "04090000"
+    #define CHARSET 0x4b0
+    #define LANG_WITH_CHARSET "040904b0"
 #else
-    #define LANG "040904b0"
+    #define CHARSET 0
+    #define LANG_WITH_CHARSET "04090000"
 #endif

patches/wxMSW-2.9.0-version.patch  view on Meta::CPAN

+// RCS-ID:      $Id$
 // Copyright:   (c) 2000 Vadim Zeitlin
 // Licence:     wxWidgets license
 ///////////////////////////////////////////////////////////////////////////////
@@ -25,10 +25,16 @@
     #define DLL_FLAGS 0x0L
 #endif
 
+// 0x0409 is US English, 0x04b0 is Unicode and 0x0000 is 7 bit ASCII. see
+// http://msdn.microsoft.com/en-us/library/aa381049(VS.85).aspx for the full
+// list of languages and charsets
+#define LANG 0x0409
 #ifdef _UNICODE
-    #define LANG "04090000"
+    #define CHARSET 0x4b0
+    #define LANG_WITH_CHARSET "040904b0"
 #else
-    #define LANG "040904b0"
+    #define CHARSET 0
+    #define LANG_WITH_CHARSET "04090000"
 #endif



( run in 0.233 second using v1.01-cache-2.11-cpan-4d50c553e7e )