This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
gnoemoe/gnoemoe/mcp/gm-mcp-icecrew-mcpreset.h

59 lines
1.8 KiB
C

#ifndef __GM_MCP_ICECREW_MCPRESET_H__
#define __GM_MCP_ICECREW_MCPRESET_H__
#include <glib-object.h>
#include <gtk/gtk.h>
#include "gm-mcp-package.h"
G_BEGIN_DECLS
/*
* Type checking and casting macros
*/
#define GM_TYPE_MCP_ICECREW_MCPRESET (gm_mcp_icecrew_mcpreset_get_type())
#define GM_MCP_ICECREW_MCPRESET(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
GM_TYPE_MCP_ICECREW_MCPRESET, GmMcpIcecrewMcpreset))
#define GM_MCP_ICECREW_MCPRESET_CONST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\
GM_TYPE_MCP_ICECREW_MCPRESET, GmMcpIcecrewMcpreset const))
#define GM_MCP_ICECREW_MCPRESET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
GM_TYPE_MCP_ICECREW_MCPRESET, GmMcpIcecrewMcpresetClass))
#define GM_IS_MCP_ICECREW_MCPRESET(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
GM_TYPE_MCP_ICECREW_MCPRESET))
#define GM_IS_MCP_ICECREW_MCPRESET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
GM_TYPE_MCP_ICECREW_MCPRESET))
#define GM_MCP_ICECREW_MCPRESET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
GM_TYPE_MCP_ICECREW_MCPRESET, GmMcpIcecrewMcpresetClass))
/* Private structure type */
typedef struct _GmMcpIcecrewMcpresetPrivate GmMcpIcecrewMcpresetPrivate;
/*
* Main object structure
*/
typedef struct _GmMcpIcecrewMcpreset GmMcpIcecrewMcpreset;
struct _GmMcpIcecrewMcpreset {
GmMcpPackage parent;
/*< private > */
GmMcpIcecrewMcpresetPrivate *priv;
};
/*
* Class definition
*/
typedef struct _GmMcpIcecrewMcpresetClass GmMcpIcecrewMcpresetClass;
struct _GmMcpIcecrewMcpresetClass {
GmMcpPackageClass parent_class;
/* Signals
void (* proto) (GmMcpIcecrewMcpreset *obj); */
};
GType gm_mcp_icecrew_mcpreset_get_type(void) G_GNUC_CONST;
GmMcpIcecrewMcpreset *gm_mcp_icecrew_mcpreset_new(void);
G_END_DECLS
#endif /* __GM_MCP_ICECREW_MCPRESET_H__ */