aboutsummaryrefslogtreecommitdiff
path: root/CRT
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-09-15 23:09:41 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-09-15 23:09:41 +0200
commit5b5de30ac0baf416078cd339af694d0ec70db37a (patch)
tree23ffbde410bd1d7282e6195b84fee5576c5c3a32 /CRT
parentf8948b833688f3622b0c0d2e2fba03f5db6ee7a5 (diff)
Added ::from_unicode to convert unicode strings to ansi string in kernel mode.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'CRT')
-rw-r--r--CRT/eastl_compat.cpp24
-rw-r--r--CRT/eastl_compat.hpp4
2 files changed, 28 insertions, 0 deletions
diff --git a/CRT/eastl_compat.cpp b/CRT/eastl_compat.cpp
index 43068b3..cc2df45 100644
--- a/CRT/eastl_compat.cpp
+++ b/CRT/eastl_compat.cpp
@@ -10,6 +10,10 @@
#define NANOPRINTF_IMPLEMENTATION 1
#include "nanoprintf.h"
+#ifndef NATIVE
+#include <wdm.h>
+#endif
+
/*
* eastl::to_string(...) does not work yet event if with a provided Vsnprintf/Vsnprintf8
* The issue seems to be caused by a broken va_list/va_copy.
@@ -118,3 +122,23 @@ eastl::string to_string(double value)
else
return "";
}
+
+#ifndef NATIVE
+eastl::string from_unicode(wchar_t * wstr, unsigned short wlen, unsigned short wmax)
+{
+ ANSI_STRING ansi;
+ UNICODE_STRING unicode;
+
+ unicode.Buffer = wstr;
+ unicode.Length = wlen;
+ unicode.MaximumLength = (wmax > 0 ? wmax : wlen);
+
+ if (NT_SUCCESS(RtlUnicodeStringToAnsiString(&ansi, &unicode, TRUE))) {
+ eastl::string result(ansi.Buffer, ansi.Length);
+ RtlFreeAnsiString(&ansi);
+ return result;
+ }
+
+ return "";
+}
+#endif
diff --git a/CRT/eastl_compat.hpp b/CRT/eastl_compat.hpp
index 773f7fa..442dc03 100644
--- a/CRT/eastl_compat.hpp
+++ b/CRT/eastl_compat.hpp
@@ -12,4 +12,8 @@ eastl::string to_string(unsigned long long int value);
eastl::string to_string(float value);
eastl::string to_string(double value);
+#ifndef NATIVE
+eastl::string from_unicode(wchar_t * wstr, unsigned short wlen, unsigned short wmax = 0);
+#endif
+
#endif