~behda/+junk/udisks2.original

« back to all changes in this revision

Viewing changes to src/udiskslinuxdrive.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_DRIVE_H__
 
22
#define __UDISKS_LINUX_DRIVE_H__
 
23
 
 
24
#include "udisksdaemontypes.h"
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define UDISKS_TYPE_LINUX_DRIVE         (udisks_linux_drive_get_type ())
 
29
#define UDISKS_LINUX_DRIVE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), UDISKS_TYPE_LINUX_DRIVE, UDisksLinuxDrive))
 
30
#define UDISKS_IS_LINUX_DRIVE(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), UDISKS_TYPE_LINUX_DRIVE))
 
31
 
 
32
GType        udisks_linux_drive_get_type (void) G_GNUC_CONST;
 
33
UDisksDrive *udisks_linux_drive_new      (void);
 
34
gboolean     udisks_linux_drive_update   (UDisksLinuxDrive       *drive,
 
35
                                          UDisksLinuxDriveObject *object);
 
36
 
 
37
G_END_DECLS
 
38
 
 
39
#endif /* __UDISKS_LINUX_DRIVE_H__ */