(svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
This commit is contained in:
@@ -3,14 +3,7 @@
|
||||
#ifndef STRINGS_H
|
||||
#define STRINGS_H
|
||||
|
||||
static inline char* InlineString(char* buf, uint16 string)
|
||||
{
|
||||
*buf++ = '\x81';
|
||||
*buf++ = string & 0xFF;
|
||||
*buf++ = string >> 8;
|
||||
return buf;
|
||||
}
|
||||
|
||||
char *InlineString(char *buf, uint16 string);
|
||||
char *GetString(char *buffr, uint16 string, const char* last);
|
||||
|
||||
extern char _userstring[128];
|
||||
|
Reference in New Issue
Block a user