diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-12-04 05:14:39 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-12-04 05:14:39 +0000 |
commit | 4c37395f73edab782157c9bd3e9bc2f95aa2720e (patch) | |
tree | a6d7b045a63a2e7ee0a403af37f96ba2fd09fd2d /wiretap/snoop.h | |
parent | 4c6b80bb27ff186eee8d72d74d3f3e855a7ad079 (diff) | |
download | wireshark-4c37395f73edab782157c9bd3e9bc2f95aa2720e.tar.gz wireshark-4c37395f73edab782157c9bd3e9bc2f95aa2720e.tar.bz2 wireshark-4c37395f73edab782157c9bd3e9bc2f95aa2720e.zip |
Add support to Wiretap for writing Network Monitor 1.x-format capture
files.
Make the return type of a number of routines that return 1 (for "true")
on success and 0 (for "false") on failure to "gboolean", and make the 1's
and 0's TRUEs and FALSEs.
svn path=/trunk/; revision=1194
Diffstat (limited to 'wiretap/snoop.h')
-rw-r--r-- | wiretap/snoop.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/snoop.h b/wiretap/snoop.h index 26811987f9..a740d1b62c 100644 --- a/wiretap/snoop.h +++ b/wiretap/snoop.h @@ -1,6 +1,6 @@ /* snoop.h * - * $Id: snoop.h,v 1.3 1999/12/04 03:36:22 guy Exp $ + * $Id: snoop.h,v 1.4 1999/12/04 05:14:39 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu> @@ -22,4 +22,4 @@ */ int snoop_open(wtap *wth, int *err); -int snoop_dump_open(wtap_dumper *wdh, int *err); +gboolean snoop_dump_open(wtap_dumper *wdh, int *err); |