TeX/include/TeX/interface.h

15 lines
404 B
C

//---
// interface: Interface functions
//---
#ifndef TEX_INTF
#define TEX_INTF
/* Rendering-related interface functions */
extern void (*TeX_pixel)(int x, int y, int color);
extern void (*TeX_line)(int x1, int y1, int x2, int y2, int color);
extern void (*TeX_size)(char const * str, int *width, int *height);
extern void (*TeX_text)(char const * str, int x, int y, int color);
#endif /* TEX_INTF */