minor errors fixed
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Mon, 24 May 2004 20:52:20 +0000 (20:52 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Mon, 24 May 2004 20:52:20 +0000 (20:52 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@537 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/doc/developer/lttvwindow_events_delivery.txt

index 8f936a5e8d5748c899953b9f4ff30c8d61945896..c71e7a20c1b943ff5f7c149c912c89370760ff1f 100644 (file)
@@ -141,19 +141,19 @@ Added to the lttvwindow API :
 
 
 - lttvwindow_events_request
-( MainWindow          *main_win,
-  LttTime              start_time,
-  LttvTracesetPosition start_position,
-  LttTime              end_time,
-  guint                num_events,
-  LttvTracesetPosition end_position,
-  LttvHooksById        before_traceset,
-  LttvHooksById        before_trace,
-  LttvHooksById        before_tracefile,
-  LttvHooksById        middle,
-  LttvHooksById        after_tracefile,
-  LttvHooksById        after_trace,
-  LttvHooksById        after_traceset)
+( MainWindow                  *main_win,
+  LttTime                      start_time,
+  LttvTracesetContextPosition  start_position,
+  LttTime                      end_time,
+  guint                        num_events,
+  LttvTracesetContextPosition  end_position,
+  LttvHooksById                before_traceset,
+  LttvHooksById                before_trace,
+  LttvHooksById                before_tracefile,
+  LttvHooksById                middle,
+  LttvHooksById                after_tracefile,
+  LttvHooksById                after_trace,
+  LttvHooksById                after_traceset)
 
 
 Internal functions :
@@ -181,18 +181,18 @@ It adds the EventsRequest struct to the array of time requests pending and
 registers a pending request for the next g_idle if none is registered.
 
 typedef struct _EventsRequest {
-  LttTime              start_time,
-  LttvTracesetPosition start_position,
-  LttTime              end_time,
-  guint                num_events,
-  LttvTracesetPosition end_position,
-  LttvHooksById        before_traceset,
-  LttvHooksById        before_trace,
-  LttvHooksById        before_tracefile,
-  LttvHooksById        middle,
-  LttvHooksById        after_tracefile,
-  LttvHooksById        after_trace,
-  LttvHooksById        after_traceset)
+  LttTime                     start_time,       /* Unset : { 0, 0 }       */
+  LttvTracesetContextPosition start_position,   /* Unset : num_traces = 0 */
+  LttTime                     end_time,         /* Unset : { 0, 0 }       */
+  guint                       num_events,       /* Unset : G_MAXUINT      */
+  LttvTracesetContextPosition end_position,     /* Unset : num_traces = 0 */
+  LttvHooksById              *before_traceset,  /* Unset : NULL           */
+  LttvHooksById              *before_trace,     /* Unset : NULL           */
+  LttvHooksById              *before_tracefile, /* Unset : NULL           */
+  LttvHooksById              *middle,           /* Unset : NULL           */
+  LttvHooksById              *after_tracefile,  /* Unset : NULL           */
+  LttvHooksById              *after_trace,      /* Unset : NULL           */
+  LttvHooksById              *after_traceset    /* Unset : NULL           */
 } EventsRequest;
 
 
This page took 0.025582 seconds and 4 git commands to generate.