diff options
Diffstat (limited to 'tools/iso/kernel.soso/ttydriver.h')
-rw-r--r-- | tools/iso/kernel.soso/ttydriver.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/iso/kernel.soso/ttydriver.h b/tools/iso/kernel.soso/ttydriver.h new file mode 100644 index 00000000..3dab6a4a --- /dev/null +++ b/tools/iso/kernel.soso/ttydriver.h @@ -0,0 +1,17 @@ +#ifndef TTYDRIVER_H +#define TTYDRIVER_H + +#include "common.h" +#include "tty.h" +#include "fs.h" + +void initializeTTYs(BOOL graphicMode); +Tty* getActiveTTY(); + +void sendKeyInputToTTY(Tty* tty, uint8 scancode); + +BOOL isValidTTY(Tty* tty); + +FileSystemNode* createPseudoTerminal(); + +#endif // TTYDRIVER_H |