FreeRDP
pen.h
1 
20 #ifndef FREERDP_GDI_PEN_H
21 #define FREERDP_GDI_PEN_H
22 
23 #include <freerdp/api.h>
24 #include <freerdp/gdi/gdi.h>
25 
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif
30 
31  FREERDP_API HGDI_PEN gdi_CreatePen(UINT32 fnPenStyle, UINT32 nWidth, UINT32 crColor,
32  UINT32 format, const gdiPalette* palette);
33  FREERDP_API UINT32 gdi_GetPenColor(HGDI_PEN pen, UINT32 format);
34 
35 #ifdef __cplusplus
36 }
37 #endif
38 
39 #endif /* FREERDP_GDI_PEN_H */