1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #ifndef WSTOOL_H
30 #define WSTOOL_H
31
32 #include <stdarg.h>
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 int tool_get_tmpdir(
char *configfile);
39
40 int tool_srvctrl(
char *socketfile,
char *cmd);
41
42 int log_ereport(
int degree,
const char *format, ...);
43 int log_ereport_v(
int degree,
const char *format, va_list args);
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif
50
51