From b7783b19d2d075ba507f4300e44704710301fbb5 Mon Sep 17 00:00:00 2001 From: erorcun Date: Tue, 24 Nov 2020 01:25:44 +0300 Subject: Xbox message screen, disabled by default --- src/core/common.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/core/common.h') diff --git a/src/core/common.h b/src/core/common.h index 0e6bd60f..9c81cf3b 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -220,6 +220,8 @@ extern int strcasecmp(const char *str1, const char *str2); extern int strncasecmp(const char *str1, const char *str2, size_t len); #endif +extern wchar *AllocUnicode(const char*src); + #define clamp(v, low, high) ((v)<(low) ? (low) : (v)>(high) ? (high) : (v)) #define clamp2(v, center, radius) ((v) < (center) ? Max(v, center - radius) : Min(v, center + radius)) @@ -487,4 +489,4 @@ inline T *WriteSaveBuf(uint8 *&buf, uint32 &length, const T &value) assert(ReadSaveBuf(buf,len) == size); -void cprintf(char*, ...); \ No newline at end of file +void cprintf(char*, ...); -- cgit v1.2.3