#include <dballe/core/file.h>
#include <stdio.h>
Go to the source code of this file.
Data Structures | |
struct | _dba_file |
Base contents of a dba_file. More... | |
Typedefs | |
typedef dba_err(*) | dba_file_create_fun (dba_encoding type, FILE *fd, const char *mode, dba_file *file) |
Type of function that is used to create a kind of dba_file instance. | |
typedef void(*) | dba_file_delete_fun (dba_file) |
Type of function that is used to delete a kind of dba_file instance. | |
typedef dba_err(*) | dba_file_read_fun (dba_file file, dba_rawmsg msg, int *found) |
Type of function that is used to read from a kind of dba_file instance. | |
typedef dba_err(*) | dba_file_write_fun (dba_file file, dba_rawmsg msg) |
Type of function that is used to write to a kind of dba_file instance. | |
Functions | |
dba_err | dba_file_default_write_impl (dba_file file, dba_rawmsg msg) |
Simple default file write implementation. | |
Variables | |
dba_file_create_fun | dba_file_aof_create |
Function used to create a dba_file for AOF. | |
dba_file_create_fun | dba_file_bufr_create |
Function used to create a dba_file for BUFR. | |
dba_file_create_fun | dba_file_crex_create |
Function used to create a dba_file for CREX. |