Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/include/BIF_editfont.h')
-rw-r--r--source/blender/include/BIF_editfont.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/source/blender/include/BIF_editfont.h b/source/blender/include/BIF_editfont.h
index 372630da8e2..081bea67145 100644
--- a/source/blender/include/BIF_editfont.h
+++ b/source/blender/include/BIF_editfont.h
@@ -30,16 +30,26 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#include <wchar.h>
+
#ifndef BIF_EDITFONT_H
#define BIF_EDITFONT_H
struct Text;
extern char *BIF_lorem;
-extern char *copybuf;
-extern char *copybufinfo;
+extern wchar_t *copybuf;
+extern wchar_t *copybufinfo;
+
+typedef struct unicodect
+{
+ char *name;
+ char *longname;
+ int start;
+ int end;
+} unicodect;
-void do_textedit(unsigned short event, short val, char _ascii);
+void do_textedit(unsigned short event, short val, unsigned long _ascii);
void make_editText(void);
void load_editText(void);
void remake_editText(void);