New call oid_trav.
[yaz-moved-to-github.git] / include / yaz / oid.h
index d19d6a2..0e745ec 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1995-1999, Index Data.
+ * Copyright (c) 1995-2000, Index Data.
  *
  * Permission to use, copy, modify, distribute, and sell this software and
  * its documentation, in whole or in part, for any purpose, is hereby granted,
@@ -23,7 +23,7 @@
  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  * OF THIS SOFTWARE.
  *
- * $Id: oid.h,v 1.3 2000-01-06 14:59:13 adam Exp $
+ * $Id: oid.h,v 1.9 2002-01-29 13:47:33 adam Exp $
  */
 
 #ifndef OID_H
@@ -31,9 +31,7 @@
 
 #include <yaz/yconfig.h>
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+YAZ_BEGIN_CDECL
 
 #define OID_SIZE 20
     
@@ -73,88 +71,130 @@ typedef enum oid_value
     VAL_BER,
     VAL_BASIC_CTX,
     VAL_BIB1,
+
     VAL_EXP1,
     VAL_EXT1,
     VAL_CCL1,
     VAL_GILS,
-    VAL_WAIS,
+    VAL_WAIS, 
+/* 10 */
     VAL_STAS,
     VAL_COLLECT1,
     VAL_CIMI1,
     VAL_GEO,
     VAL_DIAG1,
+
     VAL_ISO2709,
     VAL_UNIMARC,
     VAL_INTERMARC,
     VAL_CCF,
     VAL_USMARC,
+/* 20 */
     VAL_UKMARC,
     VAL_NORMARC,
     VAL_LIBRISMARC,
     VAL_DANMARC,
     VAL_FINMARC,
+
     VAL_MAB,
     VAL_CANMARC,
     VAL_SBN,
     VAL_PICAMARC,
     VAL_AUSMARC,
+/* 30 */
     VAL_IBERMARC,
     VAL_CATMARC,
     VAL_MALMARC,
     VAL_EXPLAIN,
     VAL_SUTRS,
+
     VAL_OPAC,
     VAL_SUMMARY,
     VAL_GRS0,
     VAL_GRS1,
     VAL_EXTENDED,
+/* 40 */
     VAL_FRAGMENT,
     VAL_RESOURCE1,
     VAL_RESOURCE2,
     VAL_PROMPT1,
     VAL_DES1,
+
     VAL_KRB1,
     VAL_PRESSET,
     VAL_PQUERY,
     VAL_PCQUERY,
     VAL_ITEMORDER,
+
+/* 50 */
     VAL_DBUPDATE0,
     VAL_DBUPDATE,
     VAL_EXPORTSPEC,
     VAL_EXPORTINV,
     VAL_NONE,
+
     VAL_SETM,
     VAL_SETG,
     VAL_VAR1,
     VAL_ESPEC1,
     VAL_SOIF,
+
+/* 60 */
     VAL_SEARCHRES1,
     VAL_THESAURUS,
     VAL_CHARLANG,
     VAL_USERINFO1,
     VAL_MULTISRCH1,
+
     VAL_MULTISRCH2,
     VAL_DATETIME,
     VAL_SQLRS,
     VAL_PDF,
     VAL_POSTSCRIPT,
+
+/* 70 */
     VAL_HTML,
     VAL_TIFF,
     VAL_GIF,
     VAL_JPEG,
     VAL_PNG,
+
     VAL_MPEG,
     VAL_SGML,
     VAL_TIFFB,
     VAL_WAV,
     VAL_UPDATEES,
+
+/* 80 */
     VAL_TEXT_XML,
     VAL_APPLICATION_XML,
     VAL_UNIVERSE_REPORT,
     VAL_PROXY,
     VAL_COOKIE,
+
     VAL_CLIENT_IP,
     VAL_ISO_ILL_1,
+    VAL_ZBIG,
+    VAL_UTIL,
+    VAL_XD1,
+
+/* 90 */
+    VAL_ZTHES,
+    VAL_FIN1,
+    VAL_DAN1,
+    VAL_DIAG_ES,
+    VAL_DIAG_GENERAL,
+
+    VAL_JPMARC,
+    VAL_SWEMARC,
+    VAL_SIGLEMARC,
+    VAL_ISDSMARC,
+    VAL_RUSMARC,
+
+/* 100 */
+    VAL_ADMINSERVICE,
+    VAL_HOLDINGS,
+    VAL_HUNMARC,
 /* add new types here... */
 
 /* VAL_DYNAMIC must have highest value */
@@ -183,11 +223,13 @@ YAZ_EXPORT void oid_setprivateoids(oident *list);
 YAZ_EXPORT struct oident *oid_addent (int *oid, enum oid_proto proto,
                                      enum oid_class oclass,
                                      const char *desc, int value);
+
+YAZ_EXPORT void oid_trav (void (*func)(struct oident *oidinfo, void *vp),
+                          void *vp);
+
 YAZ_EXPORT void oid_init(void);
 YAZ_EXPORT void oid_exit(void);
 
-#ifdef __cplusplus
-}
-#endif
+YAZ_END_CDECL
 
 #endif