1 /*
2 * Copyright 2012-2018 Andrew Beekhof <andrew@beekhof.net>
3 *
4 * This source code is licensed under the GNU Lesser General Public License
5 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
6 */
7 #ifndef MEMBERSHIP__H
8 # define MEMBERSHIP__H
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 #include <crm/cluster/internal.h>
15
16 void post_cache_update(int instance);
17
18 extern gboolean check_join_state(enum crmd_fsa_state cur_state, const char *source);
19
20 #ifdef __cplusplus
21 }
22 #endif
23
24 #endif