1
2
3
4
5
6
7
8
9 #ifndef PCMK__PCMKI_PCMKI_RESOURCE__H
10 #define PCMK__PCMKI_PCMKI_RESOURCE__H
11
12 #include <glib.h>
13
14 #include <crm/cib/cib_types.h>
15 #include <crm/common/scheduler.h>
16 #include <crm/common/output_internal.h>
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 int pcmk__resource_delete(cib_t *cib, uint32_t cib_opts, const char *rsc_id,
23 const char *rsc_type);
24
25 int pcmk__resource_digests(pcmk__output_t *out, pcmk_resource_t *rsc,
26 const pcmk_node_t *node, GHashTable *overrides);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif