2016-07-18 23:24:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../../../gfx.h"
|
|
|
|
|
2018-06-23 03:02:07 +00:00
|
|
|
/* 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);
|
2018-07-08 01:19:43 +00:00
|
|
|
gColor qimage_getPixel(GDisplay* g);
|
2016-07-18 23:24:05 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|