Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9810 → Rev 9811

/programs/develop/ktcc/trunk/libc.obj/include/clayer/rasterworks.h
3,9 → 3,11
 
#include <stddef.h>
 
DLLAPI void __stdcall drawText(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
DLLAPI int __stdcall countUTF8Z(const char *string, int byteQuantity) __asm__("cntUTF-8");
DLLAPI int __stdcall charsFit(int areaWidth, int charHeight);
DLLAPI int __stdcall strWidth(int charQuantity, int charHeight);
int kolibri_rasterworks_init(void);
 
extern void __stdcall (*drawText)(void *canvas, int x, int y, const char *string, int charQuantity, int fontColor, int params);
extern int __stdcall (*countUTF8Z)(const char *string, int byteQuantity) __asm__("cntUTF-8");
extern int __stdcall (*charsFit)(int areaWidth, int charHeight);
extern int __stdcall (*strWidth)(int charQuantity, int charHeight);
 
#endif /* KOLIBRI_RASTERWORKS_H */