Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        e16-ecore_list.c 


Log Message:
Remove inline's. I doubt they make much sense here.

===================================================================
RCS file: /cvs/e/e16/e/src/e16-ecore_list.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- e16-ecore_list.c    16 Apr 2006 23:00:45 -0000      1.4
+++ e16-ecore_list.c    13 May 2006 10:03:08 -0000      1.5
@@ -255,7 +255,7 @@
  * @return  @c FALSE if an error occurs, @c TRUE if appended successfully
  * @ingroup Ecore_Data_List_Add_Item_Group
  */
-EAPI inline int
+EAPI int
 ecore_list_append(Ecore_List * list, void *data)
 {
    int                 ret;
@@ -304,7 +304,7 @@
  * @return @c FALSE if an error occurs, @c TRUE if prepended successfully.
  * @ingroup Ecore_Data_List_Add_Item_Group
  */
-EAPI inline int
+EAPI int
 ecore_list_prepend(Ecore_List * list, void *data)
 {
    int                 ret;
@@ -346,7 +346,7 @@
  * @return  @c FALSE if there is an error, @c TRUE on success
  * @ingroup Ecore_Data_List_Add_Item_Group
  */
-EAPI inline int
+EAPI int
 ecore_list_insert(Ecore_List * list, void *data)
 {
    int                 ret;
@@ -411,7 +411,7 @@
  * @return  A pointer to the removed data on success, @c NULL on failure.
  * @ingroup Ecore_Data_List_Remove_Item_Group
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_remove(Ecore_List * list)
 {
    void               *ret;
@@ -489,7 +489,7 @@
  *          failure.
  * @ingroup Ecore_Data_List_Remove_Item_Group
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_remove_first(Ecore_List * list)
 {
    void               *ret;
@@ -544,7 +544,7 @@
  * @return  A pointer to the removed data on success, @c NULL on failure.
  * @ingroup Ecore_Data_List_Remove_Item_Group
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_remove_last(Ecore_List * list)
 {
    void               *ret;
@@ -616,7 +616,7 @@
  * @return  A pointer to new current item on success, @c NULL on failure.
  * @ingroup Ecore_Data_List_Traverse_Group
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_goto_index(Ecore_List * list, int indx)
 {
    void               *ret;
@@ -664,7 +664,7 @@
  * @return  A pointer to @p data on success, @c NULL on failure.
  * @ingroup Ecore_Data_List_Traverse_Group
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_goto(Ecore_List * list, void *data)
 {
    void               *ret;
@@ -718,7 +718,7 @@
  * @return  A pointer to the first item on success, @c NULL on failure
  * @ingroup Ecore_Data_List_Traverse_Group
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_goto_first(Ecore_List * list)
 {
    void               *ret;
@@ -749,7 +749,7 @@
  * @return  A pointer to the last item on success, @c NULL on failure.
  * @ingroup Ecore_Data_List_Traverse_Group
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_goto_last(Ecore_List * list)
 {
    void               *ret;
@@ -779,7 +779,7 @@
  * @param  list The list.
  * @return Returns the data at current position, can be @c NULL.
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_current(Ecore_List * list)
 {
    void               *ret;
@@ -809,7 +809,7 @@
  * @param   list The list to retrieve data from.
  * @return  The current item in the list on success, @c NULL on failure.
  */
-EAPI inline void   *
+EAPI void          *
 ecore_list_next(Ecore_List * list)
 {
    void               *data;




-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to