blob: e681a9b769a83805821223d419cf8461a2b7ba1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef STAR_STRING_WINDOWS_HPP
#define STAR_STRING_WINDOWS_HPP
#include <windows.h>
#include "StarString.hpp"
namespace Star {
String utf16ToString(WCHAR const* s);
unique_ptr<WCHAR[]> stringToUtf16(String const& s);
}
#endif
|