~behda/+junk/udisks2.original

« back to all changes in this revision

Viewing changes to src/udiskslinuxpartition.h

  • Committer: behda
  • Date: 2014-05-24 15:15:11 UTC
  • Revision ID: pauvitk@gmail.com-20140524151511-3vtr0uubjewx3z2j
Initial commit of source code and Debian packaging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
 
2
 *
 
3
 * Copyright (C) 2007-2010 David Zeuthen <zeuthen@gmail.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_PARTITION_H__
 
22
#define __UDISKS_LINUX_PARTITION_H__
 
23
 
 
24
#include "udisksdaemontypes.h"
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define UDISKS_TYPE_LINUX_PARTITION  (udisks_linux_partition_get_type ())
 
29
#define UDISKS_LINUX_PARTITION(o)    (G_TYPE_CHECK_INSTANCE_CAST ((o), UDISKS_TYPE_LINUX_PARTITION, UDisksLinuxPartition))
 
30
#define UDISKS_IS_LINUX_PARTITION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), UDISKS_TYPE_LINUX_PARTITION))
 
31
 
 
32
GType            udisks_linux_partition_get_type (void) G_GNUC_CONST;
 
33
UDisksPartition *udisks_linux_partition_new      (void);
 
34
void             udisks_linux_partition_update   (UDisksLinuxPartition   *partition,
 
35
                                                  UDisksLinuxBlockObject *object);
 
36
 
 
37
gboolean         udisks_linux_partition_set_type_sync (UDisksLinuxPartition  *partition,
 
38
                                                       const gchar           *type,
 
39
                                                       uid_t                  caller_uid,
 
40
                                                       GCancellable          *cancellable,
 
41
                                                       GError               **error);
 
42
 
 
43
G_END_DECLS
 
44
 
 
45
#endif /* __UDISKS_LINUX_PARTITION_H__ */