-
Notifications
You must be signed in to change notification settings - Fork 6
/
getHistory.h
35 lines (31 loc) · 1.18 KB
/
getHistory.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*************************************************************************\
* Copyright (c) 1994-2004 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 1997-2003 Southeastern Universities Research Association,
* as Operator of Thomas Jefferson National Accelerator Facility.
* Copyright (c) 1997-2002 Deutches Elektronen-Synchrotron in der Helmholtz-
* Gemelnschaft (DESY).
* This file is distributed subject to a Software License Agreement found
* in the file LICENSE that is included with this distribution.
\*************************************************************************/
#ifndef _getHistory_h
#define _getHistory_h
/* StripHistoryInfo
*
* Contains instance data for the archive service.
*/
typedef struct _StripHistoryInfo
{
Strip strip;
char *archiverInfo;
}
StripHistoryInfo;
unsigned long getHistory(StripHistory the_shi,
char *name,
struct timeval *begin,
struct timeval *end,
struct timeval **times,
short **status,
double **data,
unsigned long *count);
#endif /* _getHistory_h */