1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

LibVT: Add stubs for DECPNM, DECPAM

Still not implemented, but provides easier to grasp FIXMEs.
This commit is contained in:
Jelle Raaijmakers 2021-09-30 11:43:17 +02:00 committed by Linus Groh
parent 91ad7754fe
commit e33e0e6a27
2 changed files with 22 additions and 0 deletions

View file

@ -361,6 +361,12 @@ protected:
// DECDC - Delete Column
void DECDC(Parameters);
// DECPNM - Set numeric keypad mode
void DECPNM();
// DECPAM - Set application keypad mode
void DECPAM();
#ifndef KERNEL
TerminalClient& m_client;
#else