From Owen Kirby :
[obnox/wireshark/wip.git] / wiretap / ascend.h
index c9db11ae1d01ef89db50dda65674ee6816abf1b1..9e493ab36cfd972eaf61dca15ab24f22c40efe5c 100644 (file)
@@ -1,39 +1,33 @@
 /* ascend.h
  *
- * $Id: ascend.h,v 1.3 1999/09/11 22:36:38 gerald Exp $
+ * $Id$
  *
  * Wiretap Library
- * Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu>
- * 
+ * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
  * of the License, or (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  *
  */
 
+#ifndef __ASCEND_H__
+#define __ASCEND_H__
+
 #define ASCEND_MAX_DATA_ROWS 8
 #define ASCEND_MAX_DATA_COLS 16
 #define ASCEND_MAX_PKT_LEN (ASCEND_MAX_DATA_ROWS * ASCEND_MAX_DATA_COLS)
 
-typedef struct {
-  time_t secs;
-  time_t usecs;
-  guint32 caplen;
-  guint32 len;
-} ascend_pkthdr;
+int ascend_open(wtap *wth, int *err, gchar **err_info);
 
-int ascend_open(wtap *wth, int *err);
-void init_parse_ascend();
-int parse_ascend(FILE *fh, void *pd, struct ascend_phdr *phdr,
-               ascend_pkthdr *hdr, int len);
-int ascend_seek_read (FILE *fh, int seek_off, guint8 *pd, int len);
+#endif