UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
trbuf.h
1 /* trbuf.h */
2 #ifndef __trbuf_h
3 #define __trbuf_h
4 
5 typedef struct
6 { float Tb;
7  float Te;
8  float Dt;
9  int traces_count;
10  int trace_size;
11  int samples_count;
12  int fd_type; /* Base data 1 - IBM, 2 - PC, 3 - SUN */
13  int fr_type; /* Sample format 1 - R4, 2 - I4, 3 - I2 */
14  int infile_h;
15  int hdr_file;
16  int hdr_trace;
17 } TrBuf;
18 
19 typedef struct
20 { int x;
21  int y;
22  int w;
23  int h;
24  int d;
25 } Rect;
26 
27 #ifdef __cplusplus
28 extern "C"
29 {
30 #endif /* __cplusplus */
31 
32 int plot_buf (Widget w, TrBuf *ts);
33 int redraw_buf ();
34 int cancel_buf ();
35 
36 #ifdef __cplusplus
37 };
38 #endif /* __cplusplus */
39 #endif /* trbuf.h */
Definition: trbuf.h:5
Definition: trbuf.h:19