-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmessage_defines.py
32 lines (28 loc) · 1.68 KB
/
message_defines.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#################################################################################
# #
# message_defines.py #
# #
# The software is licensed Creative Commons CC-BY-NC-SA. Under this agreement #
# you are authorized to use, share on the same rights or edit this software #
# for personnal purpose only. You are not allow to sell this software. #
# #
# Official Website : https://coinpaign.com #
# Contact : romain.guihot@gmail.com #
# This module is installed in computers to be managed by Remote Administrator. #
# This is used in RDC_ServerProtocol.py and RDC_ClientProtocol.py #
# Function: #
# define message types for RDP protocol #
# #
#################################################################################
class protocolMessageTypes:
pass
messageTypes = protocolMessageTypes( )
messageTypes.AUTHENTICATION = 0
messageTypes.INITIALIZATION = 1
messageTypes.FRAME_UPDATE = 2
messageTypes.KEY_EVENT = 3
messageTypes.POINTER_EVENT = 4
messageTypes.COPY_TEXT = 5
messageTypes.CUT_TEXT = 6
messageTypes.TEXT_MESSAGE = 7
messageTypes.AUTH_RESULT = 8