X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fodr.h;h=78cc83427f1456de8ff1b541ecef7942340c1239;hb=db93359f0cbf9a1e9dc81ea05f7b8662f843ae3d;hp=a25ad20825741b15624a374551fd4b6b717d32fc;hpb=72da3f05a07602494a978c266f473bb0b4c7841f;p=yaz-moved-to-github.git diff --git a/include/yaz/odr.h b/include/yaz/odr.h index a25ad20..78cc834 100644 --- a/include/yaz/odr.h +++ b/include/yaz/odr.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: odr.h,v 1.25 2007-01-03 08:42:14 adam Exp $ */ +/* $Id: odr.h,v 1.26 2007-03-19 21:08:13 adam Exp $ */ /** * \file odr.h @@ -115,35 +115,27 @@ typedef int Odr_oid; /* terminate by -1 */ #define ODR_S_CUR 1 #define ODR_S_END 2 -typedef struct odr +typedef struct odr *ODR; + +/** ODR handle and the public structs */ +struct odr { int direction; /* the direction of this stream */ - int error; /* current error state (0==OK) */ + int error; /* current error state (0==OK) */ - int can_grow; /* are we allowed to reallocate */ unsigned char *buf; /* memory handle */ + int top; /* top of buffer (max pos when encoding) */ int size; /* current buffer size (encoding+decoding) */ int pos; /* current position (encoding) */ - int top; /* top of buffer (max pos when encoding) */ const unsigned char *bp; /* position in buffer (decoding) */ - int t_class; /* implicit tagging (-1==default tag) */ - int t_tag; - - int enable_bias; /* force choice enable flag */ - int choice_bias; /* force choice */ - int lenlen; /* force length-of-lenght (odr_setlen()) */ - - FILE *print; /* output file handler for direction print */ - int indent; /* current indent level for printing */ - NMEM mem; /* memory handle for decoding (primarily) */ struct Odr_private *op; -} *ODR; +}; typedef int (*Odr_fun)(ODR, char **, int, const char *);