FreeRDP
include/freerdp/codec/bitmap.h
1 
20 #ifndef FREERDP_CODEC_BITMAP_H
21 #define FREERDP_CODEC_BITMAP_H
22 
23 #include <freerdp/api.h>
24 #include <freerdp/types.h>
25 
26 #include <freerdp/codec/color.h>
27 
28 #include <winpr/crt.h>
29 #include <winpr/stream.h>
30 
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #endif
35 
36  FREERDP_API SSIZE_T freerdp_bitmap_compress(const void* WINPR_RESTRICT srcData, UINT32 width,
37  UINT32 height, wStream* WINPR_RESTRICT s,
38  UINT32 bpp, UINT32 byte_limit, UINT32 start_line,
39  wStream* WINPR_RESTRICT temp_s, UINT32 e);
40 
41 #ifdef __cplusplus
42 }
43 #endif
44 
45 #endif /* FREERDP_CODEC_BITMAP_H */