1
2
3
4
5
6
7
8
9
10 #ifndef PCMK__PCMKI_PCMKI_RESULT_CODE__H
11 #define PCMK__PCMKI_PCMKI_RESULT_CODE__H
12
13 #include <stdint.h>
14
15 #include <crm/crm.h>
16 #include <crm/common/output_internal.h>
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 int pcmk__show_result_code(pcmk__output_t *out, int code,
23 enum pcmk_result_type type, uint32_t flags);
24 int pcmk__list_result_codes(pcmk__output_t *out, enum pcmk_result_type type,
25 uint32_t flags);
26
27 #ifdef __cplusplus
28 }
29 #endif
30
31 #endif