Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. #ifndef KOLIBRI_RASTERWORKS_H
  2. #define KOLIBRI_RASTERWORKS_H
  3.  
  4. extern int kolibri_rasterworks_init(void);
  5.  
  6. extern void (*drawText)(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params) __attribute__((__stdcall__));
  7. extern int (*countUTF8Z)(const char *string, int byteQuantity) __attribute__((__stdcall__));
  8. extern int (*charsFit)(int areaWidth, int charHeight) __attribute__((__stdcall__));
  9. extern int (*strWidth)(int charQuantity, int charHeight) __attribute__((__stdcall__));
  10.  
  11. #endif /* KOLIBRI_RASTERWORKS_H */
  12.