2021-06-10 16:53:38 +02:00
|
|
|
#ifndef KOLIBRI_RASTERWORKS_H
|
|
|
|
#define KOLIBRI_RASTERWORKS_H
|
|
|
|
|
2022-01-02 13:16:17 +01:00
|
|
|
//extern int kolibri_rasterworks_init(void);
|
2021-06-10 16:53:38 +02:00
|
|
|
|
2022-01-02 13:16:17 +01:00
|
|
|
extern void (*drawText __attribute__((__stdcall__)))(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
|
|
|
|
extern int (*countUTF8Z __attribute__((__stdcall__)))(const char *string, int byteQuantity);
|
|
|
|
extern int (*charsFit __attribute__((__stdcall__)))(int areaWidth, int charHeight);
|
|
|
|
extern int (*strWidth __attribute__((__stdcall__)))(int charQuantity, int charHeight);
|
2021-06-10 16:53:38 +02:00
|
|
|
|
2022-01-02 13:16:17 +01:00
|
|
|
#endif /* KOLIBRI_RASTERWORKS_H */
|