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

LibVT: Implement Device Status Report (cursor position report)

This commit is contained in:
AnotherTest 2020-04-09 07:43:12 +04:30 committed by Andreas Kling
parent 8286f8b996
commit 2663739db1
2 changed files with 14 additions and 1 deletions

View file

@ -26,8 +26,8 @@
#pragma once
#include <AK/String.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibVT/Position.h>
@ -178,6 +178,7 @@ private:
void NEL();
void IND();
void RI();
void DSR();
TerminalClient& m_client;