X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=libchimara%2Fchimara-if.h;h=72d64610346542555c9b68407b1d04f39cb833ea;hb=3f6125ead6dc379f08f38419b5da97555330816f;hp=3bbe06ac7e0b2fd16d10976a6adccd9b3b47151a;hpb=90090906ff9ca843e5dac0d26342f5bf85bab4f2;p=projects%2Fchimara%2Fchimara.git diff --git a/libchimara/chimara-if.h b/libchimara/chimara-if.h index 3bbe06a..72d6461 100644 --- a/libchimara/chimara-if.h +++ b/libchimara/chimara-if.h @@ -24,7 +24,7 @@ G_BEGIN_DECLS * * Constants representing all game formats supported by the Chimara system. */ -typedef enum _ChimaraIFFormat { +typedef enum { /*< private >*/ CHIMARA_IF_FORMAT_NONE = -1, /*< public >*/ @@ -47,7 +47,7 @@ typedef enum _ChimaraIFFormat { * * Constants representing the available interpreter plugins. */ -typedef enum _ChimaraIFInterpreter { +typedef enum { /*< private >*/ CHIMARA_IF_INTERPRETER_NONE = -1, /*< public >*/ @@ -78,7 +78,7 @@ typedef enum _ChimaraIFInterpreter { * Allowed values for the #ChimaraIF:interpreter-number property. All trademarks * are the property of their respective owners. */ -typedef enum _ChimaraIFZmachineVersion { +typedef enum { CHIMARA_IF_ZMACHINE_DEFAULT = 0, CHIMARA_IF_ZMACHINE_DECSYSTEM_20, CHIMARA_IF_ZMACHINE_APPLE_IIE, @@ -100,13 +100,13 @@ typedef enum _ChimaraIFZmachineVersion { * * This structure contains no public members. */ -typedef struct _ChimaraIF { +typedef struct { ChimaraGlk parent_instance; /*< public >*/ } ChimaraIF; -typedef struct _ChimaraIFClass { +typedef struct { ChimaraGlkClass parent_class; /* Signals */ void(* command) (ChimaraIF *self, gchar *input, gchar *response);