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