#ifndef BOKF_SEED_H #define BOKF_SEED_H #include #include /* Seeds a fresh org inside an existing transaction: chart of accounts, moms report rules and the current fiscal year. Returns 0 on success. */ int seed_org(sqlite3 *db, int64_t org_id, const char *framework, int fy_start_month, int64_t *out_fy_id, char **err); /* Inserts the default moms report rules for an org (no transaction). */ int seed_vat_rules(sqlite3 *db, int64_t org_id, char **err); #endif