diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-07-13 15:19:30 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-07-13 15:19:30 +0300 |
| commit | d9494ce93f4c6df9688427602167122858c39cd8 (patch) | |
| tree | 2ac8059741d1a011146a771208404bb5748e8014 /Software/Visual_Studio/Tango.RemoteDesktop | |
| parent | 2b60eec02c440788a270bb5feda369dc23bd0de7 (diff) | |
| download | Tango-d9494ce93f4c6df9688427602167122858c39cd8.tar.gz Tango-d9494ce93f4c6df9688427602167122858c39cd8.zip | |
Improved automatic bug reporting!
Fixed issue where log out /log in keeps previous available machines for connection.
Added machine disconnection + confirmation on log out.
Diffstat (limited to 'Software/Visual_Studio/Tango.RemoteDesktop')
3 files changed, 27 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/Network/GetScreenshotRequest.cs b/Software/Visual_Studio/Tango.RemoteDesktop/Network/GetScreenshotRequest.cs new file mode 100644 index 000000000..f52059f0e --- /dev/null +++ b/Software/Visual_Studio/Tango.RemoteDesktop/Network/GetScreenshotRequest.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.RemoteDesktop.Network +{ + public class GetScreenshotRequest + { + } +} diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/Network/GetScreenshotResponse.cs b/Software/Visual_Studio/Tango.RemoteDesktop/Network/GetScreenshotResponse.cs new file mode 100644 index 000000000..39a460073 --- /dev/null +++ b/Software/Visual_Studio/Tango.RemoteDesktop/Network/GetScreenshotResponse.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.RemoteDesktop.Network +{ + public class GetScreenshotResponse + { + public byte[] Bitmap { get; set; } + } +} diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj b/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj index c9eafa8ce..a3767bd34 100644 --- a/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj +++ b/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj @@ -92,6 +92,8 @@ <Compile Include="Input\Touch\TouchInjector.cs" /> <Compile Include="IScreenCaptureEngine.cs" /> <Compile Include="MaxDifferencesReachedException.cs" /> + <Compile Include="Network\GetScreenshotRequest.cs" /> + <Compile Include="Network\GetScreenshotResponse.cs" /> <Compile Include="Network\KeyboardEventType.cs" /> <Compile Include="Network\KeyboardStateRequest.cs" /> <Compile Include="Network\KeyboardStateResponse.cs" /> |
