Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislavs Sokurenko <vladislavs.sokurenko@zabbix.com>2018-03-02 14:17:37 +0300
committerVladislavs Sokurenko <vladislavs.sokurenko@zabbix.com>2018-03-02 14:17:37 +0300
commit73cadf2d105dfbf5abd2697c756b5210ce1eb4e1 (patch)
tree48462b2284aa2852e303589cd090e2550b93a3a0 /include/export.h
parentfe66b94e3715c81962ce182276acdaf27e300dd0 (diff)
........S. [DEV-789] export events to files
Diffstat (limited to 'include/export.h')
-rw-r--r--include/export.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/export.h b/include/export.h
index 3368dc4bc3b..17a1cbcab25 100644
--- a/include/export.h
+++ b/include/export.h
@@ -20,10 +20,15 @@
#ifndef ZABBIX_EXPORT_H
#define ZABBIX_EXPOT_H
-void zbx_export_init(const char *process_name, int process_num);
+void zbx_problems_export_init(const char *process_name, int process_num);
+int zbx_problems_export_write(const char *buf, size_t count);
+void zbx_problems_export_flush(void);
+
+void zbx_history_export_init(const char *process_name, int process_num);
int zbx_history_export_write(const char *buf, size_t count);
void zbx_history_export_flush(void);
int zbx_trends_export_write(const char *buf, size_t count);
void zbx_trends_export_flush(void);
+
#endif