diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-23 12:01:08 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-23 12:01:08 +0200 |
commit | ea1ed4eea16de9da03db47e15d5e83456082ade0 (patch) | |
tree | 53e71d6ddfb74dd5ea66b2f878318c6650b78fb5 /src/include/eiotas_iota.h | |
parent | 216fb6d612dadf33201af4935e52a1a1f99cfd58 (diff) | |
download | edoors-ea1ed4eea16de9da03db47e15d5e83456082ade0.zip edoors-ea1ed4eea16de9da03db47e15d5e83456082ade0.tar.gz |
cleanup structs
Diffstat (limited to 'src/include/eiotas_iota.h')
-rw-r--r-- | src/include/eiotas_iota.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/eiotas_iota.h b/src/include/eiotas_iota.h index 6e4a346..12f093b 100644 --- a/src/include/eiotas_iota.h +++ b/src/include/eiotas_iota.h @@ -33,11 +33,11 @@ typedef enum _Eiotas_Type typedef struct _Eiotas_Iota Eiotas_Iota; struct _Eiotas_Iota { - Eiotas_Type type; /* type of the iota */ - Eiotas_Iota *spin; /* top level iota which is a Eiota_Spin */ - Eiotas_Iota *parent; /* direct parent in the hierarchy */ - Eina_Stringshare *name; /* iota's name */ - Eina_Stringshare *path; /* full path to this iota */ + Eiotas_Type type; /* type of the iota */ + Eiotas_Iota *spin; /* top level iota which is a Eiotas_Spin */ + Eiotas_Iota *parent; /* direct parent in the hierarchy */ + Eina_Stringshare *name; /* iota's name */ + Eina_Stringshare *path; /* full path to this iota */ }; EAPI void eiotas_iota_show(Eiotas_Iota *iota); |