FreeRDP
wf_graphics.h
1 
20 #ifndef FREERDP_CLIENT_WIN_GRAPHICS_H
21 #define FREERDP_CLIENT_WIN_GRAPHICS_H
22 
23 #include "wf_client.h"
24 
25 HBITMAP wf_create_dib(wfContext* wfc, UINT32 width, UINT32 height, UINT32 format, const BYTE* data,
26  BYTE** pdata);
27 wfBitmap* wf_image_new(wfContext* wfc, UINT32 width, UINT32 height, UINT32 format,
28  const BYTE* data);
29 void wf_image_free(wfBitmap* image);
30 
31 BOOL wf_register_pointer(rdpGraphics* graphics);
32 BOOL wf_register_graphics(rdpGraphics* graphics);
33 
34 #endif /* FREERDP_CLIENT_WIN_GRAPHICS_H */