qulogic/gplugin

ef531afbb1c6
flow: Promoted 'trunk' (22bf185b75f0) to 'feature/mono'.
/*
* Copyright (C) 2011-2014 Gary Kramlich <grim@reaperworld.com>
*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef GPLUGIN_MONO_LOADER_H
#define GPLUGIN_MONO_LOADER_H
#define GPLUGIN_TYPE_MONO_LOADER (gplugin_mono_loader_get_type())
#define GPLUGIN_MONO_LOADER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GPLUGIN_TYPE_MONO_LOADER, GPluginMonoLoader))
#define GPLUGIN_MONO_LOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((obj), GPLUGIN_TYPE_MONO_LOADER, GPluginMonoLoaderClass))
#define GPLUGIN_IS_MONO_LOADER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GPLUGIN_TYPE_MONO_LOADER))
#define GPLUGIN_IS_MONO_LOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((obj), GPLUGIN_TYPE_MONO_LOADER))
#define GPLUGIN_MONO_LOADER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GPLUGIN_TYPE_MONO_LOADER, GPluginMonoLoaderClass))
typedef struct _GPluginMonoLoader GPluginMonoLoader;
typedef struct _GPluginMonoLoaderClass GPluginMonoLoaderClass;
#include <gplugin.h>
#include <gplugin-native.h>
struct _GPluginMonoLoader {
GPluginLoader parent;
void (*_gplugin_reserved_1)(void);
void (*_gplugin_reserved_2)(void);
void (*_gplugin_reserved_3)(void);
void (*_gplugin_reserved_4)(void);
};
struct _GPluginMonoLoaderClass {
GPluginLoaderClass parent;
void (*_gplugin_reserved_1)(void);
void (*_gplugin_reserved_2)(void);
void (*_gplugin_reserved_3)(void);
void (*_gplugin_reserved_4)(void);
};
G_BEGIN_DECLS
void gplugin_mono_loader_register(GPluginNativePlugin *plugin);
GType gplugin_mono_loader_get_type(void);
G_END_DECLS
#endif /* GPLUGIN_MONO_LOADER_H */