diff options
author | David Zeuthen <davidz@redhat.com> | 2009-01-06 13:35:24 -0500 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2009-01-06 13:35:24 -0500 |
commit | 2645459721dabd3aed5ce7899abfce5772eb3b89 (patch) | |
tree | 566dc55eaca887f88534bbef86880e19c02a3c12 /src/polkitbackend/polkitbackendauthority.h | |
parent | fce5a409add45140c87658ea0c019a9dac94dfad (diff) |
update to latest EggDBus and rework how things are done
Diffstat (limited to 'src/polkitbackend/polkitbackendauthority.h')
-rw-r--r-- | src/polkitbackend/polkitbackendauthority.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/polkitbackend/polkitbackendauthority.h b/src/polkitbackend/polkitbackendauthority.h new file mode 100644 index 0000000..1657251 --- /dev/null +++ b/src/polkitbackend/polkitbackendauthority.h @@ -0,0 +1,77 @@ +/* + * Copyright (C) 2008 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General + * Public License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place, Suite 330, + * Boston, MA 02111-1307, USA. + * + * Author: David Zeuthen <davidz@redhat.com> + */ + +#if !defined (_POLKIT_BACKEND_COMPILATION) && !defined(_POLKIT_BACKEND_INSIDE_POLKIT_BACKEND_H) +#error "Only <polkitbackend/polkitbackend.h> can be included directly, this file may disappear or change contents." +#endif + +#ifndef __POLKIT_BACKEND_AUTHORITY_H +#define __POLKIT_BACKEND_AUTHORITY_H + +#include <glib-object.h> +#include "polkitbackendtypes.h" + +G_BEGIN_DECLS + +#define POLKIT_BACKEND_TYPE_AUTHORITY (polkit_backend_authority_get_type ()) +#define POLKIT_BACKEND_AUTHORITY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), POLKIT_BACKEND_TYPE_AUTHORITY, PolkitBackendAuthority)) +#define POLKIT_BACKEND_AUTHORITY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), POLKIT_BACKEND_TYPE_AUTHORITY, PolkitBackendAuthorityClass)) +#define POLKIT_BACKEND_AUTHORITY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), POLKIT_BACKEND_TYPE_AUTHORITY,PolkitBackendAuthorityClass)) +#define POLKIT_BACKEND_IS_AUTHORITY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), POLKIT_BACKEND_TYPE_AUTHORITY)) +#define POLKIT_BACKEND_IS_AUTHORITY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), POLKIT_BACKEND_TYPE_AUTHORITY)) + +typedef struct _PolkitBackendAuthorityClass PolkitBackendAuthorityClass; + +struct _PolkitBackendAuthority +{ + GObject parent_instance; +}; + +struct _PolkitBackendAuthorityClass +{ + GObjectClass parent_class; + + /*< public >*/ + + GList * (*enumerate_actions) (PolkitBackendAuthority *authority, + const gchar *locale); + + /*< private >*/ + /* Padding for future expansion */ + void (*_polkit_reserved1) (void); + void (*_polkit_reserved2) (void); + void (*_polkit_reserved3) (void); + void (*_polkit_reserved4) (void); + void (*_polkit_reserved5) (void); + void (*_polkit_reserved6) (void); + void (*_polkit_reserved7) (void); + void (*_polkit_reserved8) (void); +}; + +GType polkit_backend_authority_get_type (void) G_GNUC_CONST; + +GList *polkit_backend_authority_enumerate_actions (PolkitBackendAuthority *authority, + const gchar *locale); + +G_END_DECLS + +#endif /* __POLKIT_BACKEND_AUTHORITY_H */ + |