Starbound/source/core/StarString_windows.hpp
2025-03-21 22:23:30 +11:00

15 lines
233 B
C++

#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