bug repair: loading .png image, from Adrian Daerr
[gpiv.git] / src / io.h
blob105ef7f1bd94c9929a94bd0be60cb68f642625a7
1 /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 c-style: "K&R" -*- */
4 /*-----------------------------------------------------------------------------
6 gpiv - Graphic program for Particle Image Velocimetry, based on gtk/gnome
7 libraries.
9 Copyright (C) 2007, 2008
10 Gerber van der Graaf <gerber_graaf@users.sourceforge.net>
12 This file is part of gpiv.
14 Gpiv is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2, or (at your option)
17 any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 -----------------------------------------------------------------------------*/
30 * Program wide input / output functions (no callbacks)
31 * $Log: io.h,v $
32 * Revision 1.1 2008-09-16 11:21:27 gerber
33 * added io
34 *static void
37 #ifndef IO_H
38 #define IO_H
39 void
40 select_action_from_name (GpivConsole *gpiv,
41 gchar *name);
43 void
44 write_hdf_img_data (const gchar *fname_out_nosuf,
45 GnomeVFSURI *uri_out);
47 void
48 write_img (const gchar *fname_out_nosuf,
49 GnomeVFSURI *uri_out);
51 void
52 write_ascii_parameters (const char *fname_out_nosuf,
53 GnomeVFSURI *uri_out,
54 const gchar *suffix);
56 void
57 write_ascii_data (const gchar *fname_out_nosuf,
58 GnomeVFSURI *uri_out);
60 #endif /* IO_H */