X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fzoom-opt.c;h=602f57dcd4077295a1cf666fe503053d6c2f8782;hb=31c5e5fa92f5980deac3c042b765e4148329cd1b;hp=0f5d9da5e8567a7df804e4c2347162b8be31650e;hpb=88d3bedf772316f87e1996f655ccf8d1e2589755;p=yaz-moved-to-github.git diff --git a/src/zoom-opt.c b/src/zoom-opt.c index 0f5d9da..602f57d 100644 --- a/src/zoom-opt.c +++ b/src/zoom-opt.c @@ -11,6 +11,22 @@ #include +struct ZOOM_options_entry { + char *name; + char *value; + int len; /* of `value', which may contain NULs */ + struct ZOOM_options_entry *next; +}; + +struct ZOOM_options_p { + int refcount; + void *callback_handle; + ZOOM_options_callback callback_func; + struct ZOOM_options_entry *entries; + ZOOM_options parent1; + ZOOM_options parent2; +}; + static void set_value(struct ZOOM_options_entry **e, const char *value, int len) {