]> git.sesse.net Git - rdpsrv/blobdiff - proto.h
Send the same value back in synchronise.
[rdpsrv] / proto.h
diff --git a/proto.h b/proto.h
index ea5eeda78f6c7560faefbcc719a90c05c055645a..932901e12deedb6a241d2446b93ed9d2465e5827 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -62,6 +62,8 @@ void hexdump(unsigned char *p, int len);
 int load_licence(unsigned char **data);
 void save_licence(unsigned char *data, int length);
 /* rdp5.c */
+STREAM rdp5_init(int maxlen, BOOL encryption);
+void rdp5_send(STREAM s, BOOL encryption);
 void rdp5_process(STREAM s, BOOL encryption);
 /* rdp.c */
 STREAM rdp_recv(uint8 * type);
@@ -77,6 +79,8 @@ BOOL rdp_connect(char *server, uint32 flags, char *domain, char *password, char
                 char *directory);
 void rdp_disconnect(void);
 void rdp_send_bitmap_update(unsigned x, unsigned y, unsigned width, unsigned height, unsigned char *data);
+void rdp_send_control(uint16 action);
+void rdp_send_synchronise(uint16 id);
 /* rdpdr.c */
 void rdpdr_send_connect(void);
 void rdpdr_send_name(void);
@@ -101,6 +105,7 @@ void wave_out_volume(uint16 left, uint16 right);
 void wave_out_write(STREAM s, uint16 tick, uint8 index);
 void wave_out_play(void);
 /* secure.c */
+void sec_encrypt(uint8 * data, int length);
 void sec_hash_48(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2, uint8 salt);
 void sec_hash_16(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2);
 void buf_out_uint32(uint8 * buffer, uint32 value);