cutego/gui/qpaintdevice.h

22 lines
638 B
C
Raw Normal View History

2015-10-24 18:18:24 +03:00
#ifdef __cplusplus
extern "C" {
#endif
2015-11-09 20:23:42 +03:00
void QPaintDevice_DestroyQPaintDevice(void* ptr);
int QPaintDevice_ColorCount(void* ptr);
int QPaintDevice_Depth(void* ptr);
int QPaintDevice_DevicePixelRatio(void* ptr);
int QPaintDevice_Height(void* ptr);
int QPaintDevice_HeightMM(void* ptr);
int QPaintDevice_LogicalDpiX(void* ptr);
int QPaintDevice_LogicalDpiY(void* ptr);
void* QPaintDevice_PaintEngine(void* ptr);
int QPaintDevice_PaintingActive(void* ptr);
int QPaintDevice_PhysicalDpiX(void* ptr);
int QPaintDevice_PhysicalDpiY(void* ptr);
int QPaintDevice_Width(void* ptr);
int QPaintDevice_WidthMM(void* ptr);
2015-10-24 18:18:24 +03:00
#ifdef __cplusplus
}
#endif