]> git.proxmox.com Git - ceph.git/blob - ceph/src/common/module.h
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / common / module.h
1 /*
2 * Ceph - scalable distributed file system
3 *
4 * Copyright (C) 2014 Inktank Storage, Inc.
5 *
6 * This is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2.1, as published by the Free Software
9 * Foundation. See file COPYING.
10 *
11 */
12
13 #ifndef CEPH_MODULE_H
14 #define CEPH_MODULE_H
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 int module_has_param(const char *module, const char *param);
21 int module_load(const char *module, const char *options);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif /* CEPH_MODULE_H */