Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | 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 __attribute__((__stdcall__)))(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
  7. extern int (*countUTF8Z __attribute__((__stdcall__)))(const char *string, int byteQuantity);
  8. extern int (*charsFit __attribute__((__stdcall__)))(int areaWidth, int charHeight);
  9. extern int (*strWidth __attribute__((__stdcall__)))(int charQuantity, int charHeight);
  10.  
  11. #endif /* KOLIBRI_RASTERWORKS_H */
  12.