We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da1e0b commit 51a3095Copy full SHA for 51a3095
ref_internal.h
@@ -40,8 +40,11 @@ extern "C" {
40
*/
41
typedef struct {
42
hFILE_wrapper base;
43
+ // length: length of the inner file
44
int length;
- char* file_name; // NOTE: this is set to NULL if this is an in-memory hFILE
45
+ // file_name: NOTE: this is set to NULL if this is an in-memory hFILE
46
+ char* file_name;
47
+ // mf: This is stored if there is an open mFILE, with mmapped memory. This is closed on hclose
48
mFILE* mf;
49
int is_mem_hfile;
50
} hFILE_ref;
0 commit comments