1 /**
2  ** text.h ---- some shared definitions
3  **
4  ** Copyright (c) 1998 Hartmut Schirmer
5  **
6  ** This file is part of the GRX graphics library.
7  **
8  ** The GRX graphics library is free software; you can redistribute it
9  ** and/or modify it under some conditions; see the "copying.grx" file
10  ** for details.
11  **
12  ** This library is distributed in the hope that it will be useful,
13  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
14  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  **
16  */
17 
18 typedef void (*TextDrawBitmapFunc)(int x,int y,int w,int h,int ox, int oy,
19 				   char far *bmp,int pitch,int start,
20 				   GrColor fg,GrColor bg,GrPattern *p);
21 
22 void _GrDrawString(const void *text,int length,int x,int y,
23 		   const GrTextOption *opt, GrPattern *p, TextDrawBitmapFunc dbm);
24