forked from linuxmint/cinnamon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cinnamon-mount-operation.h
64 lines (51 loc) · 2.54 KB
/
cinnamon-mount-operation.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/*
* Copyright (C) 2011 Red Hat, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA
* 02110-1335, USA.
*
* Author: Cosimo Cecchi <[email protected]>
*
*/
#ifndef __CINNAMON_MOUNT_OPERATION_H__
#define __CINNAMON_MOUNT_OPERATION_H__
#include <gio/gio.h>
G_BEGIN_DECLS
#define CINNAMON_TYPE_MOUNT_OPERATION (cinnamon_mount_operation_get_type ())
#define CINNAMON_MOUNT_OPERATION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CINNAMON_TYPE_MOUNT_OPERATION, CinnamonMountOperation))
#define CINNAMON_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CINNAMON_TYPE_MOUNT_OPERATION, CinnamonMountOperationClass))
#define CINNAMON_IS_MOUNT_OPERATION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CINNAMON_TYPE_MOUNT_OPERATION))
#define CINNAMON_IS_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CINNAMON_TYPE_MOUNT_OPERATION))
#define CINNAMON_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CINNAMON_TYPE_MOUNT_OPERATION, CinnamonMountOperationClass))
typedef struct _CinnamonMountOperation CinnamonMountOperation;
typedef struct _CinnamonMountOperationClass CinnamonMountOperationClass;
typedef struct _CinnamonMountOperationPrivate CinnamonMountOperationPrivate;
struct _CinnamonMountOperation
{
GMountOperation parent_instance;
CinnamonMountOperationPrivate *priv;
};
struct _CinnamonMountOperationClass
{
GMountOperationClass parent_class;
};
GType cinnamon_mount_operation_get_type (void);
GMountOperation *cinnamon_mount_operation_new (void);
GArray * cinnamon_mount_operation_get_show_processes_pids (CinnamonMountOperation *self);
gchar ** cinnamon_mount_operation_get_show_processes_choices (CinnamonMountOperation *self);
gchar * cinnamon_mount_operation_get_show_processes_message (CinnamonMountOperation *self);
G_END_DECLS
#endif /* __CINNAMON_MOUNT_OPERATION_H__ */