xref: /netbsd-src/external/mpl/bind/dist/bin/tests/system/dyndb/driver/db.h (revision e6c7e151de239c49d2e38720a061ed9d1fa99309)
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