Skip to content
Snippets Groups Projects
Commit a06febb1 authored by Niels Möller's avatar Niels Möller
Browse files

* Requests.pmod (ClearArea): New class.

Rev: lib/modules/Protocols.pmod/X.pmod/Requests.pmod:1.14
parent 14ba4385
No related branches found
No related tags found
No related merge requests found
...@@ -501,6 +501,24 @@ class ChangeGC ...@@ -501,6 +501,24 @@ class ChangeGC
} }
} }
class ClearArea
{
inherit request;
constant reqType = 61;
int exposures;
int window;
int x, y;
int width, height;
string to_string()
{
return build_request(sprintf("%4c%2c%2c%2c%2c",
window, x, y, width, height),
exposures);
}
}
class PolyPoint class PolyPoint
{ {
inherit request; inherit request;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment