Grammar change in the license declaration.
[citadel.git] / citadel / server / database.h
index ed72f55d131c3be66fc8200b831bc8927e0a7862..d7f9771ef494ee38b779f1070bb074eb2d11704a 100644 (file)
@@ -1,12 +1,13 @@
 // Copyright (c) 1987-2023 by the citadel.org team
 // This program is open source software.  Use, duplication, or disclosure
-// are subject to the terms of the GNU General Public License, version 3.
+// is subject to the terms of the GNU General Public License, version 3.
 
 // These functions comprise an interface between Citadel Server and a database backend.
 
 #ifndef DATABASE_H
 #define DATABASE_H
 
+extern void            cdb_init_backends(void);
 extern void            cdb_chmod_data(void);
 
 extern void            (*cdb_open_databases)(void);
@@ -24,5 +25,6 @@ extern struct cdbdata         (*cdb_fetch)(int, const void *, int);
 extern void            (*cdb_checkpoint)(void);
 extern void            (*cdb_compact)(void);
 extern void            (*cdb_rewind)(int);
+extern void            (*cdb_tick)(void);
 
 #endif