1 /* $NetBSD: db.h,v 1.2 2018/08/12 13:02:29 christos Exp $ */ 2 3 /** 4 * Database API implementation. 5 * 6 * Copyright (C) 2015 Red Hat ; see COPYRIGHT for license 7 */ 8 9 #ifndef DB_H_ 10 #define DB_H_ 11 12 isc_result_t 13 create_db(isc_mem_t *mctx, const dns_name_t *origin, dns_dbtype_t type, 14 dns_rdataclass_t rdclass, unsigned int argc, char *argv[], 15 void *driverarg, dns_db_t **dbp); 16 17 #endif /* DB_H_ */ 18