1
2
3
4
5
6
7
8
9gd_putdata64(3) GETDATA gd_putdata64(3)
10
11
12
14 gd_putdata64 — write data to a Dirfile database, with largefile support
15
16
18 #define GD_64BIT_API
19 #include <getdata.h>
20
21 size_t gd_putdata64(DIRFILE *dirfile, const char *field_code,
22 gd_off64_t first_frame, gd_off64_t first_sample, size_t
23 num_frames, size_t num_samples, gd_type_t data_type, const void
24 *data_out);
25
26
28 This version of gd_putdata(3) uses an explicitly 64-bit offset type
29 (gd_off64_t), regardless of the size of off_t. It is only guaranteed
30 to be available if GD_64BIT_API is defined before including getdata.h.
31
32 If off_t is a 64-bit type, this function will the same as
33 gd_putdata(3). Otherwise, gd_putdata(3) will be a version of this
34 function which uses a 32-bit off_t.
35
36
38 gd_putdata(3)
39
40
41
42Version 0.10.0 25 December 2016 gd_putdata64(3)