diff --git a/legacy/eina/src/include/eina_hash.h b/legacy/eina/src/include/eina_hash.h index d03202eaca..e846242b82 100644 --- a/legacy/eina/src/include/eina_hash.h +++ b/legacy/eina/src/include/eina_hash.h @@ -184,7 +184,9 @@ * (argument of @ref eina_hash_new too). The following picture ilustrates the * basic idea: * + * @htmlonly * + * @endhtmlonly * @image latex 01_hash-table.eps * * Adding an element to the hash table is made of: diff --git a/legacy/eina/src/include/eina_inlist.h b/legacy/eina/src/include/eina_inlist.h index e97373e61d..4c8c80ece8 100644 --- a/legacy/eina/src/include/eina_inlist.h +++ b/legacy/eina/src/include/eina_inlist.h @@ -153,7 +153,9 @@ * The two lists, sharing some elements, can be represented by the following * picture: * - * + * @htmlonly + * + * @endhtmlonly * @image rtf eina_inlist-node_eg2-list-inlist.png * @image latex eina_inlist-node_eg2-list-inlist.eps width=\textwidth * @@ -227,7 +229,9 @@ * * And the resulting lists will be as follow: * - * + * @htmlonly + * + * @endhtmlonly * @image rtf eina_inlist-node_eg3-two-inlists.png * @image latex eina_inlist-node_eg3-two-inlists.eps width=\textwidth * diff --git a/legacy/eina/src/include/eina_list.h b/legacy/eina/src/include/eina_list.h index ad53ef6065..de475607fa 100644 --- a/legacy/eina/src/include/eina_list.h +++ b/legacy/eina/src/include/eina_list.h @@ -43,8 +43,10 @@ * @until eina_init * Here we add a sequence of elements to our list. By using append we add * elements to the end of the list, so the list will look like this:@n + * @htmlonly * * Full-size + * @endhtmlonly * @image rtf eina_list_example_01_a.png * @image latex eina_list_example_01_a.eps width=\textwidth * @until roslin @@ -74,8 +76,10 @@ * far: * @until lampkin * With this additions our list now looks like this:@n + * @htmlonly * * Full-size + * @endhtmlonly * @image rtf eina_list_example_01_b.png * @image latex eina_list_example_01_b.eps width=\textwidth * @@ -245,8 +249,10 @@ * @ref Eina_List nodes keep references to the previous node, the next node, its * data and to an accounting structure. * + * @htmlonly * * Full-size + * @endhtmlonly * @image rtf eina_list.png * @image latex eina_list.eps width=5cm * @@ -1358,8 +1364,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-foreach.eps width=\textwidth * * It can be used to free list data, as in the following example: @@ -1414,8 +1422,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-reverse-foreach.eps width=\textwidth * * It can be used to free list data, as in the following example: @@ -1473,8 +1483,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-foreach-safe.eps width=\textwidth * * This macro can be used to free list nodes, as in the following example: @@ -1527,8 +1539,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-reverse-foreach-safe.eps width=\textwidth * * This macro can be used to free list nodes, as in the following example: @@ -1573,8 +1587,10 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA * * The following diagram ilustrates this macro iterating over a list of four * elements("one", "two", "three" and "four"): + * @htmlonly * * Full-size + * @endhtmlonly * @image latex eina-list-free.eps width=\textwidth * * If you do not need to release node data, it is easier to call #eina_list_free().