diff options
author | Guido Günther <agx@sigxcpu.org> | 2010-09-29 17:36:24 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2010-09-29 17:36:24 +0200 |
commit | 2545ecb8fec0f2064daaee85d65710db2366bfbb (patch) | |
tree | c118423a73b3059caf009e25d3e4b081bc85186c /plugins/ka-plugin-afs.h | |
parent | Document changes and release 0.16-4 (diff) | |
parent | New upstream version 0.17 (diff) | |
download | krb5-auth-dialog-2545ecb8fec0f2064daaee85d65710db2366bfbb.tar.gz krb5-auth-dialog-2545ecb8fec0f2064daaee85d65710db2366bfbb.tar.bz2 krb5-auth-dialog-2545ecb8fec0f2064daaee85d65710db2366bfbb.zip |
Merge commit 'upstream/0.17' into experimental
Diffstat (limited to 'plugins/ka-plugin-afs.h')
-rw-r--r-- | plugins/ka-plugin-afs.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/plugins/ka-plugin-afs.h b/plugins/ka-plugin-afs.h new file mode 100644 index 0000000..c4fb71d --- /dev/null +++ b/plugins/ka-plugin-afs.h @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2010 Guido Guenther <agx@sigxcpu.org> + * + * 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, 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef _KA_PLUGIN_DUMMY +#define _KA_PLUGIN_DUMMY + +#include "ka-plugin.h" + +G_BEGIN_DECLS +#define KA_TYPE_PLUGIN_AFS ka_plugin_afs_get_type() +#define KA_PLUGIN_AFS(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), KA_TYPE_PLUGIN_AFS, KaPluginAfs)) +#define KA_PLUGIN_AFS_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST ((klass), KA_TYPE_PLUGIN_AFS, KaPluginAfsClass)) +#define KA_IS_PLUGIN_AFS(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), KA_TYPE_PLUGIN_AFS)) +#define KA_IS_PLUGIN_AFS_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE ((klass), KA_TYPE_PLUGIN_AFS)) +#define KA_PLUGIN_AFS_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), KA_TYPE_PLUGIN_AFS, KaPluginAfsClass)) + +typedef struct { + KaPlugin parent; +} KaPluginAfs; + +typedef struct { + KaPluginClass parent_class; +} KaPluginAfsClass; + +GType ka_plugin_afs_get_type (void); + +KaPluginAfs *ka_plugin_afs_new (void); + +G_END_DECLS +#endif /* _KA_PLUGIN_AFS */ |