1
2
3
4
5
6
7
8
9
10
11 #ifndef PCMK__SERVICES_OCF__H
12 #define PCMK__SERVICES_OCF__H
13
14 #include <glib.h>
15
16 G_GNUC_INTERNAL
17 GList *resources_os_list_ocf_providers(void);
18
19 G_GNUC_INTERNAL
20 GList *resources_os_list_ocf_agents(const char *provider);
21
22 G_GNUC_INTERNAL
23 gboolean services__ocf_agent_exists(const char *provider, const char *agent);
24
25 G_GNUC_INTERNAL
26 int services__ocf_prepare(svc_action_t *op);
27
28 G_GNUC_INTERNAL
29 enum ocf_exitcode services__ocf2ocf(int exit_status);
30
31 #endif