X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fbackend.h;h=c781fa3ea9307415e6ff26dca32a9e256fa9368c;hp=317943cebd9107a381705afb39349c4e02a30393;hb=d2ca9fe2f99c4dd273eb21e00b645bc59c2315e2;hpb=663c43bdba2dde816bb4d89df3daa0c323077e88 diff --git a/include/yaz/backend.h b/include/yaz/backend.h index 317943c..c781fa3 100644 --- a/include/yaz/backend.h +++ b/include/yaz/backend.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data. + * Copyright (C) 1995-2010 Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -74,6 +74,7 @@ typedef struct { int partial_resultset; /**< 1=partial results; 0=full (output)*/ Z_SRW_extra_arg *extra_args; /**< SRU extra request parameters (input) */ char *extra_response_data; /**< SRW extra XML response (output) */ + Z_OtherInformation *search_input; /**< extra search info request (input) */ } bend_search_rr; /** \brief Information for present handler. Does not replace bend_fetch. */ @@ -137,8 +138,8 @@ typedef struct bend_scan_rr { ODR stream; /**< encoding stream (input) */ ODR print; /**< printing stream (input) */ - Odr_int *step_size; /**< step size */ - Odr_int term_position; /**< desired index of term in result list/returned */ + int *step_size; /**< step size */ + int term_position; /**< desired index of term in result list/returned */ int num_entries; /**< number of entries requested/returned */ /* scan term entries. The called handler does not have @@ -181,7 +182,7 @@ typedef struct bend_delete_rr { char **setnames; Z_ReferenceId *referenceId; int delete_status; /**< status for the whole operation */ - Odr_int *statuses; /**< status each set - indexed as setnames */ + int *statuses; /**< status each set - indexed as setnames */ ODR stream; ODR print; } bend_delete_rr;