2021-06-10 16:53:38 +02:00
|
|
|
#ifndef KOLIBRI_RASTERWORKS_H
|
|
|
|
#define KOLIBRI_RASTERWORKS_H
|
|
|
|
|
2022-01-12 19:09:37 +01:00
|
|
|
#include <stddef.h>
|
2021-06-10 16:53:38 +02:00
|
|
|
|
2022-05-10 20:58:40 +02:00
|
|
|
DLLAPI void __stdcall drawText(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
|
|
|
|
DLLAPI int __stdcall countUTF8Z(const char *string, int byteQuantity) __asm__("cntUTF-8");
|
|
|
|
DLLAPI int __stdcall charsFit(int areaWidth, int charHeight);
|
|
|
|
DLLAPI int __stdcall strWidth(int charQuantity, int charHeight);
|
2022-01-12 19:09:37 +01:00
|
|
|
|
|
|
|
#endif /* KOLIBRI_RASTERWORKS_H */
|