X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/c907294abea66bfa9739fcd6a08415f4ea1142f8..3192589d7c45cc7adeeb7c86c20a009cb4d16934:/src/lbx.h diff --git a/src/lbx.h b/src/lbx.h index 1911cd7..95837e5 100644 --- a/src/lbx.h +++ b/src/lbx.h @@ -1,25 +1,37 @@ #ifndef LBX_H_ #define LBX_H_ -#include +#include /* Errors */ enum { LBX_ESUCCESS, LBX_EMAGIC, LBX_EEOF, + LBX_ERANGE, + LBX_EFORMAT, }; extern int lbx_errno; /* Opaque */ typedef struct lbx_state LBX; -/* File operations */ +struct lbx_statbuf { + const char *name; + size_t size; +}; + +/* Archive operations */ LBX *lbx_fopen(FILE *, const char *); -LBX *lbx_open(const char *); +LBX *lbx_mopen(void *, size_t, const char *); void lbx_close(LBX *); size_t lbx_numfiles(LBX *); +/* File operations */ +int lbx_stat(LBX *, size_t, struct lbx_statbuf *); +size_t lbx_extract(LBX *, size_t, FILE *); +void *lbx_mmap(LBX *, size_t, size_t *); + /* Misc operations */ const char *lbx_strerror(void);