kolibrios/programs/develop/ktcc/trunk/libc.obj/include/clayer/rasterworks.h
Coldy 75d51a28c0 libc.obj: headers update (now used true functions with attributes instead of pointers)
git-svn-id: svn://kolibrios.org@9810 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-05-09 17:34:55 +00:00

11 lines
473 B
C

#ifndef KOLIBRI_RASTERWORKS_H
#define KOLIBRI_RASTERWORKS_H
#include <stddef.h>
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);
#endif /* KOLIBRI_RASTERWORKS_H */