Subversion Repositories Kolibri OS

Rev

Rev 9558 | Rev 9810 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef KOLIBRI_RASTERWORKS_H
  2. #define KOLIBRI_RASTERWORKS_H
  3.  
  4. #include <stddef.h>
  5.  
  6. int kolibri_rasterworks_init(void);
  7.  
  8. extern void __stdcall (*drawText)(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
  9. extern int  __stdcall (*countUTF8Z)(const char *string, int byteQuantity) __asm__("cntUTF-8");
  10. extern int  __stdcall (*charsFit)(int areaWidth, int charHeight);
  11. extern int  __stdcall (*strWidth)(int charQuantity, int charHeight);
  12.  
  13. #endif /* KOLIBRI_RASTERWORKS_H */