diff options
Diffstat (limited to 'common/os_calls.h')
-rw-r--r-- | common/os_calls.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/os_calls.h b/common/os_calls.h index 79c07093..4146c539 100644 --- a/common/os_calls.h +++ b/common/os_calls.h @@ -153,6 +153,10 @@ int APP_CC g_atoi(char* str); int APP_CC g_pos(char* str, const char* to_find); +int APP_CC +g_mbstowcs(twchar* dest, const char* src, int n); +int APP_CC +g_wcstombs(char* dest, const twchar* src, int n); long APP_CC g_load_library(char* in); int APP_CC |