osb/source/core/StarString_windows.hpp

16 lines
233 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#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