aboutsummaryrefslogtreecommitdiffstats
path: root/capture_sync.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-02-04 01:29:29 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-02-04 01:29:29 +0000
commitdd71ad695f08b20a36787b871834cbc21f26904a (patch)
treea6af68fed74eef2c0549138e7309494650469d34 /capture_sync.h
parent02f8788b4ebb369ef7aabf9e75af37c614cf69a3 (diff)
(some) redesign of capture data structures.
don't use global cfile at all but only an untpyed handle to call the cf_... functions in file.c move the save_file member from capture_file to capture_opts, as it's only used while capturing and while preparing it svn path=/trunk/; revision=13276
Diffstat (limited to 'capture_sync.h')
-rw-r--r--capture_sync.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture_sync.h b/capture_sync.h
index 2daed7bc5c..2f8ec9c3fb 100644
--- a/capture_sync.h
+++ b/capture_sync.h
@@ -50,11 +50,11 @@ sync_pipe_do_capture(capture_options *capture_opts, gboolean is_tempfile);
/** User wants to stop capturing, gracefully close the capture child */
extern void
-sync_pipe_stop(void);
+sync_pipe_stop(capture_options *capture_opts);
/** We want to stop the program, just kill the child as soon as possible */
extern void
-sync_pipe_kill(void);
+sync_pipe_kill(capture_options *capture_opts);
/** the child will immediately start capturing, notify the parent */