FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
clipping.h
1
22#ifndef FREERDP_LIB_GDI_CLIPPING_H
23#define FREERDP_LIB_GDI_CLIPPING_H
24
25#include <freerdp/api.h>
26#include <freerdp/gdi/gdi.h>
27
28#ifdef __cplusplus
29extern "C"
30{
31#endif
32
33 FREERDP_LOCAL BOOL gdi_SetClipRgn(HGDI_DC hdc, INT32 nXLeft, INT32 nYLeft, INT32 nWidth,
34 INT32 nHeight);
35 FREERDP_LOCAL GDI_RGN* gdi_GetClipRgn(HGDI_DC hdc);
36 FREERDP_LOCAL BOOL gdi_SetNullClipRgn(HGDI_DC hdc);
37 FREERDP_LOCAL BOOL gdi_ClipCoords(HGDI_DC hdc, INT32* x, INT32* y, INT32* w, INT32* h,
38 INT32* srcx, INT32* srcy);
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* FREERDP_LIB_GDI_CLIPPING_H */