forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrorHandling.h
29 lines (24 loc) · 914 Bytes
/
errorHandling.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/****************************************************************************
*
* MODULE: r3.out.vtk
*
* AUTHOR(S): Original author
* Soeren Gebbert soerengebbert at gmx de
* 27 Feb 2006 Berlin
* PURPOSE: Converts 3D raster maps (RASTER3D) into the VTK-Ascii format
*
* COPYRIGHT: (C) 2005 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
*****************************************************************************/
#ifndef __R3_OUT_VTK_ERROR_HANDLING_H__
#define __R3_OUT_VTK_ERROR_HANDLING_H__
struct input_maps;
/*Simple Error message */
void fatal_error(char *errorMsg, input_maps * in);
/*Free the input maps structure und close all open maps */
void release_input_maps_struct(input_maps * in);
#endif