change of types

SVN revision: 6920
This commit is contained in:
Carsten Haitzler 2003-05-20 06:05:47 +00:00
parent 72c06b259b
commit f726ca9c6c
1 changed files with 6 additions and 6 deletions

View File

@ -45,13 +45,13 @@ struct _Evas_Rectangle /** A rectangle */
int h; /**< height of rectangle */
};
typedef void Evas_Hash; /**< A Hash table handle */
typedef void Evas; /**< An Evas canvas handle */
typedef void Evas_Object; /**< An Evas Object handle */
typedef struct _Evas_Hash Evas_Hash; /**< A Hash table handle */
typedef struct _Evas Evas; /**< An Evas canvas handle */
typedef struct _Evas_Object Evas_Object; /**< An Evas Object handle */
typedef void Evas_Performance; /**< An Evas Performance handle */
typedef void Evas_Modifier; /**< An Evas Modifier */
typedef void Evas_Lock; /**< An Evas Lock */
typedef void Evas_Smart; /**< An Evas Smart Object handle */
typedef struct _Evas_Modifier Evas_Modifier; /**< An Evas Modifier */
typedef struct _Evas_Lock Evas_Lock; /**< An Evas Lock */
typedef struct _Evas_Smart Evas_Smart; /**< An Evas Smart Object handle */
typedef unsigned long long Evas_Modifier_Mask; /**< An Evas modifier mask type */
#endif
#endif