about summary refs log blame commit diff stats
path: root/kernel.soso/ttydriver.h
blob: 3dab6a4aee8a057de33d8bad7a472a190e0cbd68 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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