Skip to content
Snippets Groups Projects
Commit 789a2543 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Specify default kmode values for getkey() and inkey()

parent 3b94a17b
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -875,7 +875,7 @@ public:
void insert_indicator(void);
/* getkey.cpp */
char getkey(long mode); /* Waits for a key hit local or remote */
char getkey(long mode = K_NONE);
long getkeys(const char *str, ulong max, long mode = K_UPPER);
void ungetkey(char ch, bool insert = false); /* Places 'ch' into the input buffer */
void ungetstr(const char* str, bool insert = false);
......@@ -888,7 +888,7 @@ public:
void mnemonics(const char *str);
/* inkey.cpp */
int inkey(long mode, unsigned long timeout=0);
int inkey(long mode = K_NONE, unsigned long timeout=0);
char handle_ctrlkey(char ch, long mode=0);
// Terminal mouse reporting mode (mouse_mode)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment