Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore


Modified Files:
        Ecore.h ecore_hash.c ecore_list.c ecore_path.c ecore_plugin.c 
        ecore_private.h ecore_sheap.c ecore_strings.c ecore_tree.c 
        ecore_value.c 


Log Message:
Header cleanup. Don't include unneeded headers in system lib header.

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/Ecore.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- Ecore.h     15 Apr 2005 01:22:45 -0000      1.23
+++ Ecore.h     5 Sep 2005 10:17:08 -0000       1.24
@@ -41,51 +41,12 @@
  */
 
 #include <sys/types.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <math.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <dirent.h>
-#include <limits.h>
 #include <signal.h>
 
-#include <Ecore_Data.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-#ifndef TRUE
-#define TRUE 1
-#endif
-
-#ifndef FALSE
-#define FALSE 0
-#endif
-
-#ifndef PATH_MAX
-#define PATH_MAX 4096
-#endif
-
-#ifndef MIN
-#define MIN(x, y) (((x) > (y)) ? (y) : (x))
-#endif
-
-#ifndef MAX
-#define MAX(x, y) (((x) > (y)) ? (x) : (y))
-#endif
-
-#ifndef ABS
-#define ABS(x) ((x) < 0 ? -(x) : (x))
-#endif
-
-#ifndef CLAMP
-#define CLAMP(x, min, max) (((x) > (max)) ? (max) : (((x) < (min)) ? (min) : 
(x)))
-#endif
-
 #define ECORE_EVENT_NONE         0
 #define ECORE_EVENT_EXE_EXIT     1 /**< Spawned Exe has exit event */
 #define ECORE_EVENT_SIGNAL_USER  2 /**< User signal event */
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_hash.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- ecore_hash.c        7 Aug 2005 06:08:47 -0000       1.12
+++ ecore_hash.c        5 Sep 2005 10:17:08 -0000       1.13
@@ -1,4 +1,5 @@
-#include <Ecore.h>
+#include "ecore_private.h"
+#include "Ecore_Data.h"
 
 #define ECORE_HASH_CHAIN_MAX 3
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_list.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ecore_list.c        30 Aug 2005 10:05:26 -0000      1.17
+++ ecore_list.c        5 Sep 2005 10:17:08 -0000       1.18
@@ -1,5 +1,5 @@
 #include "ecore_private.h"
-#include "Ecore.h"
+#include "Ecore_Data.h"
 
 /* Return information about the list */
 static void *_ecore_list_current(Ecore_List * list);
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_path.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ecore_path.c        4 Jan 2005 22:45:05 -0000       1.6
+++ ecore_path.c        5 Sep 2005 10:17:08 -0000       1.7
@@ -1,4 +1,5 @@
-#include <Ecore.h>
+#include "ecore_private.h"
+#include "Ecore_Data.h"
 
 static Ecore_List *group_list = NULL;
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_plugin.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- ecore_plugin.c      20 Oct 2004 17:51:27 -0000      1.4
+++ ecore_plugin.c      5 Sep 2005 10:17:08 -0000       1.5
@@ -1,4 +1,5 @@
-#include <Ecore.h>
+#include "ecore_private.h"
+#include "Ecore_Data.h"
 
 #ifndef WIN32
 #include <dlfcn.h>
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_private.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- ecore_private.h     30 Aug 2005 10:05:26 -0000      1.15
+++ ecore_private.h     5 Sep 2005 10:17:08 -0000       1.16
@@ -3,12 +3,15 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <unistd.h>
 #include <signal.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+#include <limits.h>
+#include <dirent.h>
 
 #ifndef WIN32
 #include <sys/mman.h>
@@ -24,6 +27,34 @@
 #define __UNUSED__
 #endif
 
+#ifndef TRUE
+#define TRUE 1
+#endif
+
+#ifndef FALSE
+#define FALSE 0
+#endif
+
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
+#ifndef MIN
+#define MIN(x, y) (((x) > (y)) ? (y) : (x))
+#endif
+
+#ifndef MAX
+#define MAX(x, y) (((x) > (y)) ? (x) : (y))
+#endif
+
+#ifndef ABS
+#define ABS(x) ((x) < 0 ? -(x) : (x))
+#endif
+
+#ifndef CLAMP
+#define CLAMP(x, min, max) (((x) > (max)) ? (max) : (((x) < (min)) ? (min) : 
(x)))
+#endif
+
 #define ECORE_MAGIC_NONE            0x1234fedc
 #define ECORE_MAGIC_EXE             0xf7e812f5
 #define ECORE_MAGIC_TIMER           0xf7d713f4
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_sheap.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ecore_sheap.c       29 Jan 2005 02:13:12 -0000      1.5
+++ ecore_sheap.c       5 Sep 2005 10:17:08 -0000       1.6
@@ -1,4 +1,5 @@
-#include <Ecore.h>
+#include "ecore_private.h"
+#include "Ecore_Data.h"
 
 static void _ecore_sheap_heapify(Ecore_Sheap *heap, int i);
 static void _ecore_sheap_update_data(Ecore_Sheap *heap);
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_strings.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ecore_strings.c     20 Jul 2005 09:25:00 -0000      1.7
+++ ecore_strings.c     5 Sep 2005 10:17:08 -0000       1.8
@@ -1,4 +1,5 @@
-#include <Ecore.h>
+#include "ecore_private.h"
+#include "Ecore_Data.h"
 
 static Ecore_Hash *ecore_strings = NULL;
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_tree.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- ecore_tree.c        4 Jan 2005 22:45:06 -0000       1.4
+++ ecore_tree.c        5 Sep 2005 10:17:08 -0000       1.5
@@ -1,4 +1,5 @@
-#include <Ecore.h>
+#include "ecore_private.h"
+#include "Ecore_Data.h"
 
 /* A macro for determining the highest node at given branch */
 #define MAX_HEIGHT(node) (node ? MAX(node->max_left, node->max_right) : 0)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_value.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ecore_value.c       2 Mar 2005 07:06:33 -0000       1.5
+++ ecore_value.c       5 Sep 2005 10:17:08 -0000       1.6
@@ -24,7 +24,7 @@
 
 */
 
-#include <Ecore.h>
+#include "ecore_private.h"
 
 const unsigned int ecore_prime_table[] = { 17, 31, 61, 127, 257, 509, 1021,
        2053, 4093, 8191, 16381, 32771, 65537, 131071, 262147, 524287, 1048573,




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to