20 lines
439 B
C
20 lines
439 B
C
#ifndef KONAIMAGE_H
|
|
#define KONAIMAGE_H
|
|
|
|
#include <glib-object.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define KONA_TYPE_IMAGE (kona_image_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE (KonaImage, kona_image, KONA, IMAGE, GObject) // Struct name, function prefix, Namespace, name, inherits
|
|
|
|
KonaImage *kona_image_new (void);
|
|
|
|
const guint64 *kona_image_get_id(KonaImage *self);
|
|
void kona_image_set_id(KonaImage *self, const guint64 id);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif // KONAIMAGE_H
|