]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - db.h
db.h: Kill an unused enum
[paraslash.git] / db.h
diff --git a/db.h b/db.h
index 69d4d9ed04308eb4a5c66505bcb03b3c4762a9c0..cf55b46ff621d789e4eb6d67eb28d6cf793ac08c 100644 (file)
--- a/db.h
+++ b/db.h
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
-/** \file db.h data structures common to all database tools */
+/** \file db.h data structures common to all audio file selectors */
 
 #include <sys/select.h>
 
+
 int find_audio_files(const char *dirname, int (*f)(const char *, const char *));
 
 /**
@@ -112,6 +113,9 @@ int (*pre_select)(fd_set *rfds, fd_set *wfds);
  * which are ready for reading/writing.
  */
 void (*post_select)(fd_set *rfds, fd_set *wfds);
+/**
+ * each dbtool has its private data pointer */
+void *private_data;
 };
 
 int mysql_dbtool_init(struct dbtool*);