errorHandling.h 914 B

123456789101112131415161718192021222324252627282930
  1. /****************************************************************************
  2. *
  3. * MODULE: r3.out.vtk
  4. *
  5. * AUTHOR(S): Original author
  6. * Soeren Gebbert soerengebbert at gmx de
  7. * 27 Feb 2006 Berlin
  8. * PURPOSE: Converts 3D raster maps (RASTER3D) into the VTK-Ascii format
  9. *
  10. * COPYRIGHT: (C) 2005 by the GRASS Development Team
  11. *
  12. * This program is free software under the GNU General Public
  13. * License (>=v2). Read the file COPYING that comes with GRASS
  14. * for details.
  15. *
  16. *****************************************************************************/
  17. #ifndef __R3_OUT_VTK_ERROR_HANDLING_H__
  18. #define __R3_OUT_VTK_ERROR_HANDLING_H__
  19. struct input_maps;
  20. /*Simple Error message */
  21. void fatal_error(char *errorMsg, input_maps * in);
  22. /*Free the input maps structure und close all open maps */
  23. void release_input_maps_struct(input_maps * in);
  24. #endif