1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
2  *
3  * Copyright (C) 2020 Tomas Bzatek <tbzatek@redhat.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  */
20 
21 #ifndef __UDISKS_LINUX_MODULE_BCACHE_H__
22 #define __UDISKS_LINUX_MODULE_BCACHE_H__
23 
24 #include <src/udisksdaemontypes.h>
25 #include <src/udisksmodule.h>
26 #include "udisksbcachetypes.h"
27 
28 G_BEGIN_DECLS
29 
30 #define UDISKS_TYPE_LINUX_MODULE_BCACHE            (udisks_linux_module_bcache_get_type ())
31 #define UDISKS_LINUX_MODULE_BCACHE(o)              (G_TYPE_CHECK_INSTANCE_CAST ((o), UDISKS_TYPE_LINUX_MODULE_BCACHE, UDisksLinuxModuleBcache))
32 #define UDISKS_IS_LINUX_MODULE_BCACHE(o)           (G_TYPE_CHECK_INSTANCE_TYPE ((o), UDISKS_TYPE_LINUX_MODULE_BCACHE))
33 
34 GType                   udisks_linux_module_bcache_get_type   (void) G_GNUC_CONST;
35 
36 /* Corresponds with the UDisksModuleIDFunc type */
37 G_MODULE_EXPORT
38 gchar                  *udisks_module_id                      (void);
39 
40 G_MODULE_EXPORT
41 UDisksModule           *udisks_module_bcache_new              (UDisksDaemon  *daemon,
42                                                                GCancellable  *cancellable,
43                                                                GError       **error);
44 
45 G_END_DECLS
46 
47 #endif /* __UDISKS_LINUX_MODULE_BCACHE_H__ */
48