1 /*
2  * Copyright (C) 2008 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * Author: David Zeuthen <davidz@redhat.com>
20  */
21 
22 #if !defined (_POLKIT_COMPILATION) && !defined(_POLKIT_INSIDE_POLKIT_H)
23 #error "Only <polkit/polkit.h> can be included directly, this file may disappear or change contents."
24 #endif
25 
26 #ifndef __POLKIT_UNIX_GROUP_H
27 #define __POLKIT_UNIX_GROUP_H
28 
29 #include <unistd.h>
30 #include <sys/types.h>
31 #include <glib-object.h>
32 #include <gio/gio.h>
33 #include <polkit/polkittypes.h>
34 
35 G_BEGIN_DECLS
36 
37 #define POLKIT_TYPE_UNIX_GROUP          (polkit_unix_group_get_type())
38 #define POLKIT_UNIX_GROUP(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), POLKIT_TYPE_UNIX_GROUP, PolkitUnixGroup))
39 #define POLKIT_UNIX_GROUP_CLASS(k)      (G_TYPE_CHECK_CLASS_CAST((k), POLKIT_TYPE_UNIX_GROUP, PolkitUnixGroupClass))
40 #define POLKIT_UNIX_GROUP_GET_CLASS(o)  (G_TYPE_INSTANCE_GET_CLASS ((o), POLKIT_TYPE_UNIX_GROUP, PolkitUnixGroupClass))
41 #define POLKIT_IS_UNIX_GROUP(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), POLKIT_TYPE_UNIX_GROUP))
42 #define POLKIT_IS_UNIX_GROUP_CLASS(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), POLKIT_TYPE_UNIX_GROUP))
43 
44 #if 0
45 typedef struct _PolkitUnixGroup PolkitUnixGroup;
46 #endif
47 typedef struct _PolkitUnixGroupClass PolkitUnixGroupClass;
48 
49 GType           polkit_unix_group_get_type     (void) G_GNUC_CONST;
50 PolkitIdentity *polkit_unix_group_new          (gint             gid);
51 PolkitIdentity *polkit_unix_group_new_for_name (const gchar     *name,
52                                                 GError         **error);
53 gint            polkit_unix_group_get_gid      (PolkitUnixGroup *group);
54 void            polkit_unix_group_set_gid      (PolkitUnixGroup *group,
55                                                 gint             gid);
56 
57 G_END_DECLS
58 
59 #endif /* __POLKIT_UNIX_GROUP_H */
60