move around - flatter.
[framework/uifw/eet.git] / src / tests / eet_suite.h
1 #ifndef _EET_SUITE_H
2 # define _EET_SUITE_H
3
4 #include "Eet.h"
5
6 typedef struct _Eet_List Eet_List;
7 typedef struct _Eet_Hash Eet_Hash;
8
9 Eet_List* eet_list_prepend(Eet_List *list, const void *data);
10 Eet_List* eet_list_next(Eet_List *list);
11 void* eet_list_data(Eet_List *list);
12 void eet_list_free(Eet_List *list);
13
14 void eet_hash_foreach(const Eet_Hash *hash, int (*func) (const Eet_Hash *hash, const char *key, void *data, void *fdata), const void *fdata);
15 Eet_Hash* eet_hash_add(Eet_Hash *hash, const char *key, const void *data);
16 void eet_hash_free(Eet_Hash *hash);
17
18 void eet_test_setup_eddc(Eet_Data_Descriptor_Class *eddc);
19
20
21 #endif /* _EET_SUITE_H */