ugfx/drivers/gdisp/QImage/gdisp_lld_qimage.h

17 lines
347 B
C
Raw Normal View History

2016-07-18 23:24:05 +00:00
#pragma once
#include "../../../gfx.h"
/* This test is needed as this file is also included in the .cpp file providing the below functions */
2016-07-18 23:24:05 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2018-07-08 00:54:19 +00:00
gBool qimage_init(GDisplay* g, gCoord width, gCoord height);
2016-07-18 23:24:05 +00:00
void qimage_setPixel(GDisplay* g);
color_t qimage_getPixel(GDisplay* g);
#ifdef __cplusplus
}
#endif