FreeRDP
include/freerdp/codec/bulk.h
1 
20 #ifndef FREERDP_CODEC_BULK_H
21 #define FREERDP_CODEC_BULK_H
22 
23 #include <freerdp/api.h>
24 #include <freerdp/types.h>
25 
26 /* Level-2 Compression Flags */
27 
28 #define PACKET_COMPRESSED 0x20
29 #define PACKET_AT_FRONT 0x40
30 #define PACKET_FLUSHED 0x80
31 
32 /* Level-1 Compression Flags */
33 
34 #define L1_PACKET_AT_FRONT 0x04
35 #define L1_NO_COMPRESSION 0x02
36 #define L1_COMPRESSED 0x01
37 #define L1_INNER_COMPRESSION 0x10
38 
39 #endif /* FREERDP_CODEC_BULK_H */