diff options
| -rw-r--r-- | FL/Fl_System_Driver.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_System_Driver.H b/FL/Fl_System_Driver.H index 3c85d413d..9d5813e67 100644 --- a/FL/Fl_System_Driver.H +++ b/FL/Fl_System_Driver.H @@ -139,6 +139,9 @@ public: virtual unsigned utf8from_mb(char* dst, unsigned dstlen, const char* src, unsigned srclen); // implement to shield fprintf() from locale changes in decimal point virtual int clocale_printf(FILE *output, const char *format, va_list args); + // implement functions telling whether a key is pressed + virtual int event_key(int k) {return 0;} + virtual int get_key(int k) {return 0;} }; #endif // FL_SYSTEM_DRIVER_H |
