diff options
| author | speidy <speidy@gmail.com> | 2013-10-05 12:03:15 +0300 |
|---|---|---|
| committer | speidy <speidy@gmail.com> | 2013-10-05 12:03:15 +0300 |
| commit | 0d8654481964bf13a4af5474ec37d44ef10320df (patch) | |
| tree | 409ab2fd2ba6d1b01dad346c8993d15353ba0873 /libxrdp/libxrdp.h | |
| parent | da62badee518fa31e3a4f9d7d5fb3ea32de40060 (diff) | |
| download | xrdp-proprietary-0d8654481964bf13a4af5474ec37d44ef10320df.tar.gz xrdp-proprietary-0d8654481964bf13a4af5474ec37d44ef10320df.zip | |
libxrdp: work on multimon, added monitor data processing
Diffstat (limited to 'libxrdp/libxrdp.h')
| -rw-r--r-- | libxrdp/libxrdp.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libxrdp/libxrdp.h b/libxrdp/libxrdp.h index 66b0cb61..88afae75 100644 --- a/libxrdp/libxrdp.h +++ b/libxrdp/libxrdp.h @@ -49,6 +49,8 @@ struct xrdp_iso { struct xrdp_mcs* mcs_layer; /* owner */ struct xrdp_tcp* tcp_layer; + int requestedProtocol; + int selectedProtocol; }; /* used in mcs */ @@ -62,10 +64,10 @@ struct mcs_channel_item /* used in mcs - client monitor data */ struct mcs_monitor_item { - int x; - int y; - int width; - int height; + int left; + int top; + int right; + int bottom; int is_primary; }; |
