diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/common.h | 4 |
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*, ...); |