mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
5da09a21bb
Move the declarations of the "report_error()" and "set_error_cb()" functions and the "verbose" variable to errorhelper.h. Thus, error-reporting translation units don't have to import the big dive.h header file. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
15 lines
245 B
C
15 lines
245 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef WORLDMAP_SAVE_H
|
|
#define WORLDMAP_SAVE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void export_worldmap_HTML(const char *file_name, const bool selected_only);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|