diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-02-05 15:35:25 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-02-05 15:35:25 +0000 |
commit | a1a2ae31803802fd4211f6a3121ddfbb3d47776e (patch) | |
tree | e20f65e0c35bfb450ceb684a98e79cb5dadf1267 /capture.h | |
parent | 244c060b45e2e82db3f439c9dd1589aac7856d0e (diff) | |
download | wireshark-a1a2ae31803802fd4211f6a3121ddfbb3d47776e.tar.gz wireshark-a1a2ae31803802fd4211f6a3121ddfbb3d47776e.tar.bz2 wireshark-a1a2ae31803802fd4211f6a3121ddfbb3d47776e.zip |
rename kill_capture_child to capture_kill_child to have a common prefix
split drag and drop support out of main.c into new file drag_and_drop.c, to reduce the size of main.c a bit.
Hopefully this won't break unix builds because of missing #include's, I will keep an eye on the buildbot
svn path=/trunk/; revision=13308
Diffstat (limited to 'capture.h')
-rw-r--r-- | capture.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ extern int capture_start(capture_options *capture_opts, gboolean *stats_known, extern void capture_stop(capture_options *capture_opts); /** Terminate the capture child cleanly when exiting. */ -extern void kill_capture_child(capture_options *capture_opts); +extern void capture_kill_child(capture_options *capture_opts); /** Do the low-level work of a capture. */ extern int capture_loop_start(capture_options *capture_opts, gboolean *stats_known, struct pcap_stat *stats); |