]> git.proxmox.com Git - ceph.git/blame - ceph/src/common/module.h
import ceph quincy 17.2.6
[ceph.git] / ceph / src / common / module.h
CommitLineData
7c673cae
FG
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
17extern "C" {
18#endif
19
20int module_has_param(const char *module, const char *param);
21int module_load(const char *module, const char *options);
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif /* CEPH_MODULE_H */