Source
57
57
}
58
58
zbx_history_text_cb_t;
59
59
60
60
typedef struct
61
61
{
62
62
zbx_module_t *module;
63
63
void (*history_log_cb)(const ZBX_HISTORY_LOG *, int);
64
64
}
65
65
zbx_history_log_cb_t;
66
66
67
-
//typedef struct
68
-
//{
69
-
// zbx_module_t *module;
70
-
// void (*history_bin_cb)(const ZBX_HISTORY_BIN *, int);
71
-
//}
72
-
//zbx_history_bin_cb_t;
73
-
74
67
extern zbx_history_float_cb_t *history_float_cbs;
75
68
extern zbx_history_integer_cb_t *history_integer_cbs;
76
69
extern zbx_history_string_cb_t *history_string_cbs;
77
70
extern zbx_history_text_cb_t *history_text_cbs;
78
71
extern zbx_history_log_cb_t *history_log_cbs;
79
-
//extern zbx_history_bin_cb_t *history_bin_cbs;
80
72
81
73
int zbx_load_modules(const char *path, char **file_names, int timeout, int verbose);
82
74
void zbx_unload_modules(void);
83
75
84
76
#endif