osb/source/core/StarString_windows.hpp

13 lines
174 B
C++
Raw Permalink Normal View History

#pragma once
2023-06-20 04:33:09 +00:00
#include <windows.h>
#include "StarString.hpp"
namespace Star {
String utf16ToString(WCHAR const* s);
unique_ptr<WCHAR[]> stringToUtf16(String const& s);
}