|
GRASS GIS 8 Programmer's Manual
8.4.2dev(2025)-5620950973
|
GIS Library - Error handlers. More...
#include <stddef.h>#include <grass/gis.h>
Go to the source code of this file.
Functions | |
| void | G_add_error_handler (void(*func)(void *), void *closure) |
| Add new error handler. More... | |
| void | G_remove_error_handler (void(*func)(void *), void *closure) |
| Remove existing error handler. More... | |
| void | G__call_error_handlers (void) |
| Call available error handlers (internal use only) More... | |
GIS Library - Error handlers.
(C) 2010-2011 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.
Definition in file handler.c.
| void G__call_error_handlers | ( | void | ) |
| void G_add_error_handler | ( | void(*)(void *) | func, |
| void * | closure | ||
| ) |
Add new error handler.
Example
| func | handler to add |
| closure | pointer to closure data |