ugfx/drivers/gdisp/QImage/gdisp_lld_qimage.h
2018-07-08 10:54:19 +10:00

16 lines
347 B
C

#pragma once
#include "../../../gfx.h"
/* This test is needed as this file is also included in the .cpp file providing the below functions */
#ifdef __cplusplus
extern "C" {
#endif
gBool qimage_init(GDisplay* g, gCoord width, gCoord height);
void qimage_setPixel(GDisplay* g);
color_t qimage_getPixel(GDisplay* g);
#ifdef __cplusplus
}
#endif