]> git.draconx.ca Git - liblbx.git/blobdiff - src/lbx.h
liblbx: Kill lbx_numfiles.
[liblbx.git] / src / lbx.h
index 6b7ca02ba4a609f41a732819d1e9cb36fa3e2669..0f09c06bcb3e3aec8f7a285be01f79dd180fd2d1 100644 (file)
--- a/src/lbx.h
+++ b/src/lbx.h
@@ -25,9 +25,13 @@ extern const struct lbx_file_ops lbx_pipe_fops;
 extern const struct lbx_file_ops lbx_arch_fops;
 
 /* Opaque */
-typedef struct lbx_state LBX;
+typedef struct lbx LBX;
 typedef struct lbx_file_state LBXfile;
 
+struct lbx {
+       unsigned nfiles;
+};
+
 struct lbx_statbuf {
        const char *name;
        size_t size;
@@ -39,7 +43,6 @@ LBX   *lbx_open(void *handle, const struct lbx_file_ops *fops,
 LBX   *lbx_fopen(const char *);
 LBX   *lbx_mopen(void *, size_t, const char *);
 int    lbx_close(LBX *);
-size_t lbx_numfiles(LBX *);
 
 /* File operations */
 int      lbx_file_stat(LBX *lbx, unsigned fileno, struct lbx_statbuf *out);