(svn r25091) -Codechange: Call keycodes by their name.

This commit is contained in:
frosch
2013-03-17 13:05:18 +00:00
parent 19b18d7822
commit 1ddf5a0786
2 changed files with 14 additions and 12 deletions

View File

@@ -36,10 +36,12 @@ struct Textbuf {
void CDECL Print(const char *format, ...) WARN_FORMAT(2, 3);
void DeleteAll();
bool DeleteChar(int delmode);
bool InsertChar(uint32 key);
bool InsertClipboard();
bool MovePos(int navmode);
bool InsertChar(uint32 key);
bool DeleteChar(uint16 keycode);
bool MovePos(uint16 keycode);
bool HandleCaret();
void UpdateSize();