Subversion Repositories Kolibri OS

Rev

Rev 9811 | 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. DLLAPI void __stdcall drawText(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
  7. DLLAPI int  __stdcall countUTF8Z(const char *string, int byteQuantity) __asm__("cntUTF-8");
  8. DLLAPI int  __stdcall charsFit(int areaWidth, int charHeight);
  9. DLLAPI int  __stdcall strWidth(int charQuantity, int charHeight);
  10.  
  11. #endif /* KOLIBRI_RASTERWORKS_H */