X-Git-Url: http://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/0eb74c284927b79b607adceae7262734e81a46b3..fa7c556d251ebcb41ef9709b4d85a2c820dee94b:/src/lbx.h diff --git a/src/lbx.h b/src/lbx.h index 3570803..6b7ca02 100644 --- a/src/lbx.h +++ b/src/lbx.h @@ -3,16 +3,6 @@ #include -/* Errors */ -enum { - LBX_ESUCCESS, - LBX_EMAGIC, - LBX_EEOF, - LBX_ERANGE, - LBX_EFORMAT, -}; -extern int lbx_errno; - struct lbx_file_ops { size_t (*read)(void *buf, size_t size, void *handle); int (*seek)(void *handle, long offset, int whence); @@ -60,7 +50,4 @@ long lbx_file_tell(LBXfile *f); int lbx_file_eof(LBXfile *f); void lbx_file_close(LBXfile *f); -/* Misc operations */ -const char *lbx_strerror(void); - #endif