You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
440 B
18 lines
440 B
15 years ago
|
#ifndef GRFONT_H
|
||
|
#define GRFONT_H
|
||
|
|
||
|
#include "graph.h"
|
||
|
|
||
|
extern const unsigned char font_8x8[];
|
||
|
|
||
|
extern void grGotobitmap( grBitmap* bitmap );
|
||
|
extern void grSetMargin( int right, int top );
|
||
|
extern void grSetPixelMargin( int right, int top );
|
||
|
extern void grGotoxy ( int x, int y );
|
||
|
|
||
|
extern void grWrite ( const char* string );
|
||
|
extern void grWriteln( const char* string );
|
||
|
extern void grLn( void );
|
||
|
|
||
|
#endif /* GRFONT_H */
|