File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -312,6 +312,9 @@ tInfoTypeMapping InfoTypes [] =
312
312
{ 296 , " Output window scroll bar position" },
313
313
{ 297 , " High-resolution timer frequency" },
314
314
{ 298 , " SQLite3 version number" },
315
+ { 299 , " ANSI code-page number" },
316
+ { 300 , " OEM code-page number" },
317
+
315
318
316
319
317
320
// (dates - calculated at runtime)
@@ -1031,6 +1034,15 @@ VARIANT CMUSHclientDoc::GetInfo(long InfoType)
1031
1034
SetUpVariantLong (vaResult, sqlite3_libversion_number ());
1032
1035
break ;
1033
1036
1037
+ case 299 :
1038
+ SetUpVariantLong (vaResult, GetACP ()); // ANSI code page
1039
+ break ;
1040
+
1041
+ case 300 :
1042
+ SetUpVariantLong (vaResult, GetOEMCP ()); // OEM code page
1043
+ break ;
1044
+
1045
+
1034
1046
case 301 :
1035
1047
if (m_tConnectTime.GetTime ()) // only if non-zero, otherwise return empty
1036
1048
SetUpVariantDate (vaResult, COleDateTime (m_tConnectTime.GetTime ()));
You can’t perform that action at this time.
0 commit comments