00001 00002 /* 00003 * THIS FILE IS UNDER RCS - DO NOT MODIFY UNLESS YOU HAVE 00004 * CHECKED IT OUT USING THE COMMAND CHECKOUT. 00005 * 00006 * $Id: pa__subs_8h-source.html 2161 2006-05-19 16:55:03Z paulf $ 00007 * 00008 * Revision history: 00009 * $Log$ 00009 * Revision 1.1 2006/05/19 16:55:02 paulf 00009 * first inclusion 00009 * 00010 * Revision 1.1 2001/04/12 03:06:13 lombard 00011 * Initial revision 00012 * 00013 * 00014 * 00015 */ 00016 00017 #ifndef PA_SUBS_H 00018 #define PA_SUBS_H 00019 00020 /* 00021 * The various putaway routines used for AH, SAC, SUDS and tankplayer 00022 * formats. Normally these will be accessed through putaway.c, which 00023 * is a selector for the various formats. 00024 */ 00025 00026 #include <ws_clientII.h> /* for TRACE_REQ */ 00027 00028 /* Function prototypes */ 00029 int AHPA_init(long *OutBufferLen, char *OutDir, int debug); 00030 int AHPA_next_ev(TRACE_REQ *ptrReq, int nReq, char *OutDir, 00031 char *EventDate, char *EventTime, int debug); 00032 int AHPA_next(TRACE_REQ *getThis, double GapThresh, 00033 long OutBufferLen, int debug); 00034 int AHPA_end_ev(int debug); 00035 int AHPA_close(int debug); 00036 00037 int SACPA_init(long OutBufferLen, char *OutDir, char * OutputFormat, int debug); 00038 int SACPA_next_ev(char *EventID, TRACE_REQ *ptrReq, int nReq, 00039 char *OutDir, char *EventDate, char *EventTime, int debug); 00040 int SACPA_next(TRACE_REQ *getThis, double GapThresh, 00041 long OutBufferLen, int debug); 00042 int SACPA_end_ev (int); 00043 int SACPA_close (int); 00044 00045 int SUDSPA_init (int OutBufferLen, char *OutDir, char *OutputFormat, 00046 int debug); 00047 int SUDSPA_next_ev (char *EventID, TRACE_REQ *ptrReq, int nReq, 00048 char *OutDir, char *EventDate, char *EventTime, 00049 char *EventSubnet, int debug); 00050 int SUDSPA_next (TRACE_REQ *getThis, double GapThresh, 00051 long OutBufferLen, int debug); 00052 int SUDSPA_end_ev(int debug); 00053 int SUDSPA_close(int debug); 00054 00055 int TANKPA_init(char *OutDir, int debug); 00056 int TANKPA_next_ev(char * EventID, char *OutDir, char *EventDate, 00057 char *EventTime, int debug); 00058 int TANKPA_next(TRACE_REQ *getThis, int debug); 00059 int TANKPA_end_ev (int debug); 00060 int TANKPA_close(int debug); 00061 00062 #endif