1eff55fdee
git-svn-id: svn://kolibrios.org@9552 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
485 B
C
11 lines
485 B
C
#ifndef KOLIBRI_RASTERWORKS_H
|
|
#define KOLIBRI_RASTERWORKS_H
|
|
|
|
#include <stddef.h>
|
|
|
|
extern void __stdcall (*drawText)(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
|
|
extern int __stdcall (*countUTF8Z)(const char *string, int byteQuantity) __asm__("cntUTF-8");
|
|
extern int __stdcall (*charsFit)(int areaWidth, int charHeight);
|
|
extern int __stdcall (*strWidth)(int charQuantity, int charHeight);
|
|
|
|
#endif /* KOLIBRI_RASTERWORKS_H */ |