diff options
Diffstat (limited to 'source/core/StarString_windows.hpp')
-rw-r--r-- | source/core/StarString_windows.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/core/StarString_windows.hpp b/source/core/StarString_windows.hpp new file mode 100644 index 0000000..e681a9b --- /dev/null +++ b/source/core/StarString_windows.hpp @@ -0,0 +1,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 |