Show the file size of the files in the tmp_dir on the LCD.
[ruwai.git] / software / c++ / ruwaicom / src / libmseed / unpackdata.h
blobdfff81f9294f93bbfe33ffc0e90b2fa0a8809c6d
1 /***************************************************************************
2 * unpack.h:
3 *
4 * Interface declarations for the Mini-SEED unpacking routines in
5 * unpackdata.c
7 * modified: 2009.111
8 ***************************************************************************/
11 #ifndef UNPACKDATA_H
12 #define UNPACKDATA_H 1
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
18 #include "steimdata.h"
20 /* Pointer to srcname of record being unpacked, declared in unpack.c */
21 extern char *UNPACK_SRCNAME;
23 extern int msr_unpack_int_16 (int16_t*, int, int, int32_t*, int);
24 extern int msr_unpack_int_32 (int32_t*, int, int, int32_t*, int);
25 extern int msr_unpack_float_32 (float*, int, int, float*, int);
26 extern int msr_unpack_float_64 (double*, int, int, double*, int);
27 extern int msr_unpack_steim1 (FRAME*, int, int, int, int32_t*, int32_t*,
28 int32_t*, int32_t*, int, int);
29 extern int msr_unpack_steim2 (FRAME*, int, int, int, int32_t*, int32_t*,
30 int32_t*, int32_t*, int, int);
31 extern int msr_unpack_geoscope (const char*, int, int, float*, int, int);
32 extern int msr_unpack_cdsn (int16_t*, int, int, int32_t*, int);
33 extern int msr_unpack_sro (int16_t*, int, int, int32_t*, int);
34 extern int msr_unpack_dwwssn (int16_t*, int, int, int32_t*, int);
36 #ifdef __cplusplus
38 #endif
40 #endif