summaryrefslogtreecommitdiff
path: root/src/pal/src/locale/unicode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/src/locale/unicode.cpp')
-rw-r--r--src/pal/src/locale/unicode.cpp55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/pal/src/locale/unicode.cpp b/src/pal/src/locale/unicode.cpp
index 69214735d1..97d4731198 100644
--- a/src/pal/src/locale/unicode.cpp
+++ b/src/pal/src/locale/unicode.cpp
@@ -283,61 +283,6 @@ CharNextExA(
}
-
-/*++
-Function:
-AreFileApisANSI
-
-The AreFileApisANSI function determines whether the file I/O functions
-are using the ANSI or OEM character set code page. This function is
-useful for 8-bit console input and output operations.
-
-Return Values
-
-If the set of file I/O functions is using the ANSI code page, the return value is nonzero.
-
-If the set of file I/O functions is using the OEM code page, the return value is zero.
-
-In the ROTOR version we always return true since there is no concept
-of OEM code pages.
-
---*/
-BOOL
-PALAPI
-AreFileApisANSI(
- VOID)
-{
- PERF_ENTRY(AreFileApisANSI);
- ENTRY("AreFileApisANSI ()\n");
-
- LOGEXIT("AreFileApisANSI returns BOOL TRUE\n");
- PERF_EXIT(AreFileApisANSI);
- return TRUE;
-}
-
-
-/*++
-Function:
-GetConsoleCP
-
-See MSDN doc.
---*/
-UINT
-PALAPI
-GetConsoleCP(
- VOID)
-{
- UINT nRet = 0;
- PERF_ENTRY(GetConsoleCP);
- ENTRY("GetConsoleCP()\n");
-
- nRet = GetACP();
-
- LOGEXIT("GetConsoleCP returns UINT %d\n", nRet );
- PERF_EXIT(GetConsoleCP);
- return nRet;
-}
-
/*++
Function:
GetConsoleOutputCP