]> git.draconx.ca Git - liblbx.git/commitdiff
liblbx: Kill the LBX typedef.
authorNick Bowler <draconx@users.sourceforge.net>
Sat, 14 May 2011 01:12:13 +0000 (21:12 -0400)
committerNick Bowler <draconx@users.sourceforge.net>
Sat, 14 May 2011 01:12:13 +0000 (21:12 -0400)
More stuff rendered redundant.

src/gui/lbxgui.c
src/lbx.h
src/lbxtool.c

index e230d6f84d862f84a95b28cd17bd4114507c2698..bdc1d507efecd5335f228274e84dd981abd092cc 100644 (file)
@@ -179,7 +179,7 @@ static int close_image(void *handle)
        return 0;
 }
 
-static LBXimg *load_lbx_image(LBX *archive, unsigned index)
+static LBXimg *load_lbx_image(struct lbx *archive, unsigned index)
 {
        LBXfile *file;
        LBXimg *image;
@@ -317,7 +317,7 @@ static int load_archive(const char *path)
        gchar *basename;
        GtkTreeIter iter1, iter2;
        unsigned nfiles;
-       LBX *lbx;
+       struct lbx *lbx;
 
        lbx = lbx_fopen(path);
        if (!lbx)
index 0f09c06bcb3e3aec8f7a285be01f79dd180fd2d1..1ad049346ebf80cd9d3116f76ace1309e08e09e7 100644 (file)
--- a/src/lbx.h
+++ b/src/lbx.h
@@ -25,7 +25,6 @@ extern const struct lbx_file_ops lbx_pipe_fops;
 extern const struct lbx_file_ops lbx_arch_fops;
 
 /* Opaque */
-typedef struct lbx LBX;
 typedef struct lbx_file_state LBXfile;
 
 struct lbx {
@@ -38,15 +37,15 @@ struct lbx_statbuf {
 };
 
 /* Archive operations */
-LBX   *lbx_open(void *handle, const struct lbx_file_ops *fops,
-                int (*destructor)(void *handle), const char *name);
-LBX   *lbx_fopen(const char *);
-LBX   *lbx_mopen(void *, size_t, const char *);
-int    lbx_close(LBX *);
+struct lbx *lbx_open(void *handle, const struct lbx_file_ops *fops,
+                     int (*destructor)(void *handle), const char *name);
+struct lbx *lbx_fopen(const char *);
+struct lbx *lbx_mopen(void *, size_t, const char *);
+int lbx_close(struct lbx *);
 
 /* File operations */
-int      lbx_file_stat(LBX *lbx, unsigned fileno, struct lbx_statbuf *out);
-LBXfile *lbx_file_open(LBX *lbx, unsigned fileno);
+int      lbx_file_stat(struct lbx *lbx, unsigned fileno, struct lbx_statbuf *out);
+LBXfile *lbx_file_open(struct lbx *lbx, unsigned fileno);
 size_t   lbx_file_read(LBXfile *f, void *buf, size_t n);
 int      lbx_file_seek(LBXfile *f, long offset, int whence);
 long     lbx_file_tell(LBXfile *f);
index 8a5a428d198fdb0bc949103e8cc8fd069b355976..b20766648537ec419934e9431db34b4e54854547 100644 (file)
@@ -69,7 +69,7 @@ int filematch(char **argv, const char *name)
        return i ? -1: 0;
 }
 
-int list(LBX *lbx, int verbose, char **argv)
+int list(struct lbx *lbx, int verbose, char **argv)
 {
        unsigned int i;
 
@@ -142,7 +142,7 @@ int extract_file(LBXfile *f, const struct lbx_statbuf *stat)
        return ret;
 }
 
-int extract(LBX *lbx, int verbose, char **argv)
+int extract(struct lbx *lbx, int verbose, char **argv)
 {
        unsigned int i;
 
@@ -181,7 +181,7 @@ int main(int argc, char **argv)
        int mode = MODE_NONE, verbose = 0, opt, rc = EXIT_FAILURE;
        struct lbx_pipe_state stdin_handle = { .f = stdin };
        const char *file = NULL;
-       LBX *lbx;
+       struct lbx *lbx;
 
        static const char         *sopts   = "lxf:i:vV";
        static const struct option lopts[] = {