1 /*
2 
3 Copyright (C) 2015-2018 Night Dive Studios, LLC.
4 
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9 
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 
18 */
19 /*
20  * $Source: r:/prj/lib/src/2d/RCS/tabdat.h $
21  * $Revision: 1.2 $
22  * $Author: kevin $
23  * $Date: 1994/08/16 15:38:58 $
24  *
25  * Declarations for function tables.
26  *
27  * This file is part of the 2d library.
28  *
29  * $Log: tabdat.h $
30  * Revision 1.2  1994/08/16  15:38:58  kevin
31  * new function table declataions.
32  *
33  * Revision 1.1  1993/10/19  10:30:49  kaboom
34  * Initial revision
35  *
36  */
37 
38 #ifndef __TABDAT_H
39 #define __TABDAT_H
40 extern void (**grd_pixel_table)();
41 extern void (**grd_device_table)();
42 extern void (**grd_canvas_table)();
43 extern void (**grd_function_table)();
44 #endif /* !__TABDAT_H */
45