Add support for DLP_Region

This commit is contained in:
Lauri Kasanen
2021-03-15 13:48:56 +02:00
parent fed991d697
commit c3e30dcea1
5 changed files with 172 additions and 0 deletions

View File

@@ -235,6 +235,7 @@ namespace rfb {
void stopFrameClock();
int msToNextUpdate();
void writeUpdate();
void blackOut();
Region getPendingRegion();
const RenderedCursor* getRenderedCursor();
@@ -256,6 +257,13 @@ namespace rfb {
int inotifyfd;
network::GetAPIMessager *apimessager;
struct {
bool enabled;
int x1, y1, x2, y2;
bool percents;
rdr::U16 pcx1, pcy1, pcx2, pcy2;
} DLPRegion;
};
};