# | Line 32 | Line 32 | |
---|---|---|
32 | int sg_init(void); | |
33 | int sg_drop_privileges(void); | |
34 | ||
35 | + | typedef enum { |
36 | + | SG_ERROR_NONE = 0 |
37 | + | } sg_error; |
38 | + | |
39 | + | void sg_set_error(sg_error code, const char *arg); |
40 | + | sg_error sg_get_error(); |
41 | + | const char *sg_str_error(sg_error code); |
42 | + | |
43 | typedef struct { | |
44 | char *os_name; | |
45 | char *os_release; | |
# | Line 204 | Line 212 | typedef struct { | |
212 | } sg_process_count; | |
213 | ||
214 | sg_process_count *sg_get_process_count(); | |
215 | + | |
216 | + | #ifdef SG_ENABLE_DEPRECATED |
217 | + | #include <statgrab_deprecated.h> |
218 | + | #endif |
219 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |