2023-09-07 12:51:48 +00:00
|
|
|
/*************************************************************************
|
2023-06-16 13:30:48 +00:00
|
|
|
*
|
2023-09-07 12:51:48 +00:00
|
|
|
* Orca
|
|
|
|
* Copyright 2023 Martin Fouilleul and the Orca project contributors
|
|
|
|
* See LICENSE.txt for licensing information
|
2023-06-16 13:30:48 +00:00
|
|
|
*
|
2023-09-07 12:51:48 +00:00
|
|
|
**************************************************************************/
|
2023-06-16 13:30:48 +00:00
|
|
|
#ifndef __WIN32_STRING_HELPERS_H_
|
|
|
|
#define __WIN32_STRING_HELPERS_H_
|
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
#include "util/strings.h"
|
2023-06-16 13:30:48 +00:00
|
|
|
|
2023-08-30 14:45:56 +00:00
|
|
|
oc_str16 oc_win32_utf8_to_wide(oc_arena* arena, oc_str8 s);
|
2023-08-14 08:26:11 +00:00
|
|
|
oc_str8 oc_win32_wide_to_utf8(oc_arena* arena, oc_str16 s);
|
2023-06-16 13:30:48 +00:00
|
|
|
|
|
|
|
#endif // __WIN32_STRING_HELPERS_H_
|