X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Frecord_conv.h;h=686faa9964eb9896acecaea433fdcadcda6fcb93;hb=7c7e37084545799555a7e49e0fb4d3d6f44f3a44;hp=d6af1581e644fac69d95d81460dd5456dcfe813f;hpb=a3e65bcd3250b107397675bc65b35b5939355025;p=yaz-moved-to-github.git diff --git a/include/yaz/record_conv.h b/include/yaz/record_conv.h index d6af158..686faa9 100644 --- a/include/yaz/record_conv.h +++ b/include/yaz/record_conv.h @@ -61,7 +61,7 @@ struct yaz_record_conv_type { struct yaz_record_conv_type *next; /** \brief construct and configure a type of ours */ - void * (*construct)(yaz_record_conv_t , const xmlNode *, const char *path, + void * (*construct)(const xmlNode *, const char *path, WRBUF error_msg); /** \brief converts a record */ @@ -78,7 +78,7 @@ struct yaz_record_conv_type { \retval -1 failure On failure, use yaz_record_conv_get_error to get error string. - + \verbatim @@ -144,7 +144,7 @@ int yaz_record_conv_opac_record(yaz_record_conv_t p, /** returns error string (for last error) \param p record conversion handle \return error string -*/ +*/ YAZ_EXPORT const char *yaz_record_conv_get_error(yaz_record_conv_t p); @@ -152,14 +152,14 @@ const char *yaz_record_conv_get_error(yaz_record_conv_t p); /** set path for opening stylesheets etc. \param p record conversion handle \param path file path (UNIX style with : / Windows with ;) -*/ +*/ YAZ_EXPORT void yaz_record_conv_set_path(yaz_record_conv_t p, const char *path); /** adds a type to our conversion handler \param p record conversion handle \param type info -*/ +*/ YAZ_END_CDECL