blob: 30665baa0e32e404acf0cc4deb9ebd79507f9d85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <windows.h>
#include "StarString.hpp"
namespace Star {
String utf16ToString(WCHAR const* s);
unique_ptr<WCHAR[]> stringToUtf16(String const& s);
}
|