source: trunk/gsdl/packages/yaz/include/yaz/otherinfo.h@ 1343

Last change on this file since 1343 was 1343, checked in by johnmcp, 24 years ago

Added the YAZ toolkit source to the packages directory (for z39.50 stuff)

  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1/*
2 * Copyright (c) 1999, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
5 *
6 * $Id: otherinfo.h 1343 2000-08-03 03:12:39Z johnmcp $
7 */
8#ifndef OTHERINFO_H
9#define OTHERINFO_H
10
11#include <yaz/proto.h>
12
13YAZ_BEGIN_CDECL
14
15YAZ_EXPORT void yaz_oi_APDU(Z_APDU *apdu, Z_OtherInformation ***oip);
16YAZ_EXPORT Z_OtherInformationUnit *yaz_oi_update (
17 Z_OtherInformation **otherInformationP, ODR odr,
18 int *oid, int categoryValue, int delete_flag);
19YAZ_EXPORT void yaz_oi_set_string_oid (
20 Z_OtherInformation **otherInformation, ODR odr,
21 int *oid, int categoryValue,
22 const char *str);
23YAZ_EXPORT void yaz_oi_set_string_oidval (
24 Z_OtherInformation **otherInformation, ODR odr,
25 int oidval, int categoryValue,
26 const char *str);
27YAZ_EXPORT char *yaz_oi_get_string_oid (
28 Z_OtherInformation **otherInformation,
29 int *oid, int categoryValue, int delete_flag);
30YAZ_EXPORT char *yaz_oi_get_string_oidval(
31 Z_OtherInformation **otherInformation,
32 int oidval, int categoryValue, int delete_flag);
33
34YAZ_END_CDECL
35
36#endif
Note: See TracBrowser for help on using the repository browser.