Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

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


Modified Files:
        ecore.c ecore_app.c ecore_events.c ecore_exe.c 
        ecore_idle_enterer.c ecore_idler.c ecore_main.c ecore_time.c 
        ecore_timer.c 


Log Message:


slight change in doc comments... get rid of htmlisms...

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ecore.c     3 Feb 2004 19:49:46 -0000       1.3
+++ ecore.c     20 Feb 2004 07:06:25 -0000      1.4
@@ -25,7 +25,6 @@
  *   ecore_shutdown();
  * }
  * @endcode
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_init(void)
@@ -45,8 +44,7 @@
  * 
  * Do not call this function from any callback that may be called from the main
  * loop, as the main loop will then fall over and not function properly.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
-*/
+ */
 int
 ecore_shutdown(void)
 {
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_app.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_app.c 23 Sep 2003 08:09:29 -0000      1.2
+++ ecore_app.c 20 Feb 2004 07:06:25 -0000      1.3
@@ -35,7 +35,6 @@
  *   ecore_shutdown();
  * }
  * @endcode
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_app_args_set(int argc, const char **argv)
@@ -56,7 +55,6 @@
  * the pointer is not NULL, and the string array pointer @p argv will be filled
  * also if the pointer is not NULL. The values they are filled with will be the
  * same set by ecore_app_args_set().
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_app_args_get(int *argc, char ***argv)
@@ -74,7 +72,6 @@
  * configuration reasons or in the event of a crash.
  * 
  * FIXME: Currently not implimented.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_app_restart(void)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_events.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ecore_events.c      15 Oct 2003 05:20:07 -0000      1.6
+++ ecore_events.c      20 Feb 2004 07:06:25 -0000      1.7
@@ -76,7 +76,6 @@
  *   ecore_shutdown();
  * }
  * @endcode
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Event_Handler *
 ecore_event_handler_add(int type, int (*func) (void *data, int type, void *event), 
const void *data)
@@ -104,7 +103,6 @@
  * delete the event handler and return the pointer passed as @p data when the
  * handler was added by ecore_event_handler_add(). On failure NULL will be
  * returned. Once a handler is deleted it will no longer be called.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_event_handler_del(Ecore_Event_Handler *event_handler)
@@ -136,7 +134,6 @@
  * longer needed, @p func_free will be called and passed the private sructure
  * pointer for cleaning up. If @p func_free is NULL, nothnig will be called.
  * This function is passed @p data as its data parameter.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Event *
 ecore_event_add(int type, void *ev, void (*func_free) (void *data, void *ev), void 
*data)
@@ -158,7 +155,6 @@
  * does not immediately call the free function, and it may be called later on
  * cleanup, and so if the free function depends on the data pointer to work,
  * you should defer cleaning of this till the free function is called later.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_event_del(Ecore_Event *event)
@@ -182,7 +178,6 @@
  * the program. There is no guarantee of the contents of this event ID, or how
  * it is calculated, except that the ID will be unique to the current instance
  * of the process.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_event_type_new(void)
@@ -210,7 +205,6 @@
  * event is removed from the queue. If it returns 1, the event is kept. When
  * processing is finished @p func_end is called and is passed the loop_data
  * and @p data pointer to clean up.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Event_Filter *
 ecore_event_filter_add(void * (*func_start) (void *data), int (*func_filter) (void 
*data, void *loop_data, int type, void *event), void (*func_end) (void *data, void 
*loop_data), const void *data)
@@ -237,7 +231,6 @@
  * Delete a filter that has been added by its @p ef handle. On success this
  * will return the data pointer set when this filter was added. On failure
  * NULL is returned.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_event_filter_del(Ecore_Event_Filter *ef)
@@ -266,7 +259,6 @@
  * this extra information may be useful or needed and using this call can let
  * the program know if the event type being handled is one it wants to get more
  * information about.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_event_current_type_get(void)
@@ -287,7 +279,6 @@
  * this extra information may be useful or needed and using this call can let
  * the program access the event data if the type of the event is handled by
  * the program.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_event_current_event_get(void)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_exe.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_exe.c 23 Sep 2003 08:09:29 -0000      1.2
+++ ecore_exe.c 20 Feb 2004 07:06:25 -0000      1.3
@@ -21,7 +21,6 @@
  * event is recieved. After all handlers for this child process terminated
  * event have been called, this process handle will be freed and cleaned up
  * by Ecore, and so any references to it will become invalid.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Exe *
 ecore_exe_run(const char *exe_cmd, const void *data)
@@ -60,7 +59,6 @@
  * that this handle was a result of) and returns the data pointer set on
  * executable start. This does mean there is no handle for the spawned
  * process anymore.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_exe_free(Ecore_Exe *exe)
@@ -80,7 +78,6 @@
  * @return A system process ID of the process handle
  * 
  * This function returns the system process ID of a spawned off child process.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 pid_t
 ecore_exe_pid_get(Ecore_Exe *exe)
@@ -101,7 +98,6 @@
  * 
  * This function returns the data pointer attached to the spawned off process
  * whose handle is @p exe.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_exe_data_get(Ecore_Exe *exe)
@@ -120,7 +116,6 @@
  * @param exe The process handle to control
  * 
  * This function pauses a process that was spawned.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_exe_pause(Ecore_Exe *exe)
@@ -140,7 +135,6 @@
  * 
  * This Continues a process. This is only useful if the process has already
  * been paused by something like ecore_exe_pause().
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_exe_continue(Ecore_Exe *exe)
@@ -159,7 +153,6 @@
  * @param exe The process handle to control
  * 
  * This function asks a process to terminate.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_exe_terminate(Ecore_Exe *exe)
@@ -180,7 +173,6 @@
  * This function ills off a process, and that process has no choice and will
  * exit as a result of this function, without having a chance to clean up,
  * save data, or safely shut down.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_exe_kill(Ecore_Exe *exe)
@@ -202,7 +194,6 @@
  * This function sends a user signal (SIGUSR) to a process. @p num determines
  * what numbered user signal to send. This may be either 1 or 2. Other values
  * are illegal and will be ignored, with this function doing nothing.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_exe_signal(Ecore_Exe *exe, int num)
@@ -224,7 +215,6 @@
  * @param exe The process handle to control
  * 
  * This function sends a HUP signal to the specified process.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_exe_hup(Ecore_Exe *exe)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_idle_enterer.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_idle_enterer.c        23 Sep 2003 08:09:29 -0000      1.2
+++ ecore_idle_enterer.c        20 Feb 2004 07:06:25 -0000      1.3
@@ -18,7 +18,6 @@
  * use to update your program's state if it has a state engine. Do all your
  * heavy processing here to update state (like drawing etc.). When @p func
  * is called, it will be passed the pointer @p data.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Idle_Enterer *
 ecore_idle_enterer_add(int (*func) (void *data), const void *data)
@@ -43,7 +42,6 @@
  * executed during main loop execution. On success the data pointer that was
  * being passed to the idle handler function, set by ecore_idle_enterer_add()
  * will be returned.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_idle_enterer_del(Ecore_Idle_Enterer *idle_enterer)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_idler.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_idler.c       23 Sep 2003 08:09:29 -0000      1.2
+++ ecore_idler.c       20 Feb 2004 07:06:25 -0000      1.3
@@ -19,7 +19,6 @@
  * get to do so. This is useful for when there are interfaces that require
  * polling and timers will mean too slow a response from the process if polling
  * is done by timers.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Idler *
 ecore_idler_add(int (*func) (void *data), const void *data)
@@ -44,7 +43,6 @@
  * during main loop execution. On success the data pointer set by
  * ecore_idler_add() and passed to the idler function is returned, or NULL
  * on failure.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_idler_del(Ecore_Idler *idler)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_main.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ecore_main.c        10 Nov 2003 04:48:28 -0000      1.3
+++ ecore_main.c        20 Feb 2004 07:06:25 -0000      1.4
@@ -22,7 +22,6 @@
  * 
  * This function Processes 1 iteration of the main loop, handling anything on
  * the queue. See ecore_main_loop_begin() for more information.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_main_loop_iterate(void)
@@ -37,7 +36,6 @@
  * will keep looping internally and call all callbacks set up to handle timers,
  * idle state and events Ecore recieves from X, fd's, IPC, signals etc. and
  * anything else that has registered a handler with ecore itself.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_main_loop_begin(void)
@@ -54,7 +52,6 @@
  * This function will flag a quit of the main loop once the current loop has
  * finished processing all events. It will not quit instantly, so expect more
  * callbacks to be called after this command has been issued.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_main_loop_quit(void)
@@ -91,7 +88,6 @@
  * fd = open("/tmp/fifo", O_RDONLY);
  * fdh = ecore_main_fd_handler_add(fd, ECORE_FD_READ, func_read_fifo, NULL);
  * @endcode
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Fd_Handler *
 ecore_main_fd_handler_add(int fd, Ecore_Fd_Handler_Flags flags, int (*func) (void 
*data, Ecore_Fd_Handler *fd_handler), const void *data, int (*buf_func) (void 
*buf_data, Ecore_Fd_Handler *fd_handler), const void *buf_data)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_time.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_time.c        23 Sep 2003 08:09:29 -0000      1.2
+++ ecore_time.c        20 Feb 2004 07:06:25 -0000      1.3
@@ -10,7 +10,6 @@
  * This function returns the current system time in seconds from 12:00am 
  * 1st Janruary 1970. The time is returned as a double precision floating point
  * value to allow for fractions of a second to be determined.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 double
 ecore_time_get(void)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore/ecore_timer.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ecore_timer.c       3 Nov 2003 01:27:06 -0000       1.3
+++ ecore_timer.c       20 Feb 2004 07:06:25 -0000      1.4
@@ -64,7 +64,6 @@
  *   ecore_shutdown();
  * }
  * @endcode
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_Timer *
 ecore_timer_add(double in, int (*func) (void *data), const void *data)
@@ -92,7 +91,6 @@
  * was being passed to the callback on success, or NULL on failure. After this
  * call returns the specified timer object @p timer is invalid and should not
  * be used again. It will not get called again after deletion.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void *
 ecore_timer_del(Ecore_Timer *timer)




-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to