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-awns-ping.h

59 lines
1.5 KiB
C

#ifndef __GM_MCP_AWNS_PING_H__
#define __GM_MCP_AWNS_PING_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_AWNS_PING (gm_mcp_awns_ping_get_type())
#define GM_MCP_AWNS_PING(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
GM_TYPE_MCP_AWNS_PING, GmMcpAwnsPing))
#define GM_MCP_AWNS_PING_CONST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\
GM_TYPE_MCP_AWNS_PING, GmMcpAwnsPing const))
#define GM_MCP_AWNS_PING_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
GM_TYPE_MCP_AWNS_PING, GmMcpAwnsPingClass))
#define GM_IS_MCP_AWNS_PING(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
GM_TYPE_MCP_AWNS_PING))
#define GM_IS_MCP_AWNS_PING_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
GM_TYPE_MCP_AWNS_PING))
#define GM_MCP_AWNS_PING_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
GM_TYPE_MCP_AWNS_PING, GmMcpAwnsPingClass))
/* Private structure type */
typedef struct _GmMcpAwnsPingPrivate GmMcpAwnsPingPrivate;
/*
* Main object structure
*/
typedef struct _GmMcpAwnsPing GmMcpAwnsPing;
struct _GmMcpAwnsPing {
GmMcpPackage parent;
/*< private > */
GmMcpAwnsPingPrivate *priv;
};
/*
* Class definition
*/
typedef struct _GmMcpAwnsPingClass GmMcpAwnsPingClass;
struct _GmMcpAwnsPingClass {
GmMcpPackageClass parent_class;
/* Signals
void (* proto) (GmMcpAwnsPing *obj); */
};
GType gm_mcp_awns_ping_get_type(void) G_GNUC_CONST;
GmMcpAwnsPing *gm_mcp_awns_ping_new(void);
G_END_DECLS
#endif /* __GM_MCP_AWNS_PING_H__ */