summaryrefslogtreecommitdiffstats
path: root/src/core/common.h
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2020-11-23 23:25:44 +0100
committererorcun <erorcunerorcun@hotmail.com.tr>2020-11-23 23:45:54 +0100
commitb7783b19d2d075ba507f4300e44704710301fbb5 (patch)
treebcb481da6c2bc8a0bc467acb02a5573980b13b8d /src/core/common.h
parenttwo unused functions (diff)
downloadre3-b7783b19d2d075ba507f4300e44704710301fbb5.tar
re3-b7783b19d2d075ba507f4300e44704710301fbb5.tar.gz
re3-b7783b19d2d075ba507f4300e44704710301fbb5.tar.bz2
re3-b7783b19d2d075ba507f4300e44704710301fbb5.tar.lz
re3-b7783b19d2d075ba507f4300e44704710301fbb5.tar.xz
re3-b7783b19d2d075ba507f4300e44704710301fbb5.tar.zst
re3-b7783b19d2d075ba507f4300e44704710301fbb5.zip
Diffstat (limited to '')
-rw-r--r--src/core/common.h4
1 files changed, 3 insertions, 1 deletions
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<uint32>(buf,len) == size);
-void cprintf(char*, ...); \ No newline at end of file
+void cprintf(char*, ...);