forked from KolibriOS/kolibrios
6d98726351
- The structure of the header files has been reorganized. git-svn-id: svn://kolibrios.org@8107 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
565 B
C
12 lines
565 B
C
#ifndef KOLIBRI_RASTERWORKS_H
|
|
#define KOLIBRI_RASTERWORKS_H
|
|
|
|
//extern int kolibri_rasterworks_init(void);
|
|
|
|
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);
|
|
|
|
#endif /* KOLIBRI_RASTERWORKS_H */
|