Lines Matching refs:gdIOCtx
10 typedef struct gdIOCtx { struct
11 int (*getC)(struct gdIOCtx*); argument
12 int (*getBuf)(struct gdIOCtx*, void*, int); argument
14 void (*putC)(struct gdIOCtx*, int); argument
15 int (*putBuf)(struct gdIOCtx*, const void*, int); argument
17 int (*seek)(struct gdIOCtx*, const int); argument
18 long (*tell)(struct gdIOCtx*); argument
20 void (*gd_free)(struct gdIOCtx*); argument
23 } gdIOCtx; typedef
25 typedef struct gdIOCtx *gdIOCtxPtr;
27 void Putword(int w, gdIOCtx *ctx);
28 void Putchar(int c, gdIOCtx *ctx);
30 void gdPutC(const unsigned char c, gdIOCtx *ctx);
31 int gdPutBuf(const void *, int, gdIOCtx*);
32 void gdPutWord(int w, gdIOCtx *ctx);
33 void gdPutInt(int w, gdIOCtx *ctx);
35 int gdGetC(gdIOCtx *ctx);
36 int gdGetBuf(void *, int, gdIOCtx*);
37 int gdGetByte(int *result, gdIOCtx *ctx);
38 int gdGetWord(int *result, gdIOCtx *ctx);
39 int gdGetWordLSB(signed short int *result, gdIOCtx *ctx);
40 int gdGetInt(int *result, gdIOCtx *ctx);
41 int gdGetIntLSB(signed int *result, gdIOCtx *ctx);
43 int gdSeek(gdIOCtx *ctx, const int);
44 long gdTell(gdIOCtx *ctx);