1 /* libwmf ("ipa/plot/bmp.h"): library for wmf conversion
2    Copyright (C) 2000 - various; see CREDITS, ChangeLog, and sources
3 
4    The libwmf Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8 
9    The libwmf Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13 
14    You should have received a copy of the GNU Library General Public
15    License along with the libwmf Library; see the file COPYING.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
18 
19 
wmf_plot_rop_draw(wmfAPI * API,wmfROP_Draw_t * ropdraw)20 static void wmf_plot_rop_draw (wmfAPI* API,wmfROP_Draw_t* ropdraw)
21 {	wmf_plot_t* ddata = WMF_PLOT_GetData (API);
22 
23 	plot_t* plot = (plot_t*) ddata->plot_data;
24 
25 	WMF_DEBUG (API,"wmf_[plot_]rop_draw");
26 
27 
28 }
29 
wmf_plot_bmp_draw(wmfAPI * API,wmfBMP_Draw_t * bmp_draw)30 static void wmf_plot_bmp_draw (wmfAPI* API,wmfBMP_Draw_t* bmp_draw)
31 {	wmf_plot_t* ddata = WMF_PLOT_GetData (API);
32 
33 	plot_t* plot = (plot_t*) ddata->plot_data;
34 
35 	WMF_DEBUG (API,"wmf_[plot_]bmp_draw");
36 
37 
38 }
39 
wmf_plot_bmp_read(wmfAPI * API,wmfBMP_Read_t * bmp_read)40 static void wmf_plot_bmp_read (wmfAPI* API,wmfBMP_Read_t* bmp_read)
41 {	WMF_DEBUG (API,"wmf_[plot_]bmp_read");
42 
43 	wmf_ipa_bmp_read (API,bmp_read);
44 }
45 
wmf_plot_bmp_free(wmfAPI * API,wmfBMP * bmp)46 static void wmf_plot_bmp_free (wmfAPI* API,wmfBMP* bmp)
47 {	WMF_DEBUG (API,"wmf_[plot_]bmp_free");
48 
49 	wmf_ipa_bmp_free (API,bmp);
50 }
51