-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgfdb_io_kiwi.c
35 lines (21 loc) · 936 Bytes
/
gfdb_io_kiwi.c
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
void gfdb_io_init_(bool *ok) {
}
void gfdb_io_deinit_() {
}
void gfdb_io_read_index_(char *filename, float *dt, float *dx, float *dz,
float *firstx, float *firstz, int *nchunks, int *nx,
int *nxc, int *nz, int *ng, bool *ok ) {
}
void gfdb_io_create_index_(char *filename, float *dt, float *dx, float *dz,
float *firstx, float *firstz, int *nchunks, int *nx,
int *nxc, int *nz, int *ng, bool *ok ) {
}
void gfdb_io_create_chunk_(char *filename, int *ng, int *nz, int *nxc,
int *size_hint, bool *ok) {
}
void gfdb_io_save_trace(char *filename, FILE *file, int *dataset_index,
int *ixc, int *iz, int *ig,
float *packed, int *packed_size, int *pofs, int *ofs, int *nstrips,
int *size_hint1, int *size_hint2,
void *reference, bool *ok ) {
}