#ifndef BOKF_SIE_H #define BOKF_SIE_H #include #include #include int sie_export_file(sqlite3 *db, int64_t org_id, int64_t fy_id, const char *path, char **err); /* Imports SIE 4 content (CP437 or ASCII bytes). On dry_run everything is executed and rolled back. */ int sie_import_content(sqlite3 *db, int64_t org_id, int64_t user_id, const unsigned char *data, size_t len, int dry_run, int64_t *out_fy_id, int64_t *out_vouchers, int64_t *out_accounts, char **err); #endif