diff options
Diffstat (limited to 'include/m_gui.h')
-rw-r--r-- | include/m_gui.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index 9230708e8e..41fc37a9a7 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -549,10 +549,12 @@ public: void SetInt(int value);
wchar_t* GetText();
- char * GetTextA();
+ char* GetTextA();
+ char* GetTextU();
- wchar_t* GetText(wchar_t *buf, int size);
- char* GetTextA(char *buf, int size);
+ wchar_t* GetText(wchar_t *buf, size_t size);
+ char* GetTextA(char *buf, size_t size);
+ char* GetTextU(char *buf, size_t size);
int GetInt();
|