|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 1312 (0x520) Types: TextFile Names: »mosy.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« └─⟦de7628f85⟧ └─⟦this⟧ »isode-6.0/others/mosy/mosy.h«
/* mosy.h - include file for MOSY users */ /* * $Header: /f/osi/others/mosy/RCS/mosy.h,v 7.0 89/11/23 22:00:41 mrose Rel $ * * * $Log: mosy.h,v $ * Revision 7.0 89/11/23 22:00:41 mrose * Release 6.0 * */ /* * NOTICE * * Acquisition, use, and distribution of this module and related * materials are subject to the restrictions of a license agreement. * Consult the Preface in the User's Manual for the full terms of * this agreement. * */ #ifndef _MOSY_ #define _MOSY_ #include "manifest.h" #include "general.h" #include "psap.h" /* definitions for PS-USERs */ /* \f */ typedef struct object_type { char *ot_text; /* OBJECT DESCRIPTOR */ char *ot_id; /* OBJECT IDENTIFIER */ OID ot_name; /* .. */ IFP ot_encode; /* encodes type */ IFP ot_decode; /* decodes .. */ IFP ot_print; /* prints .. */ IFP ot_free; /* frees .. */ struct object_type *ot_chain; /* hash-bucket for text2obj */ struct object_type *ot_sibling; /* linked-list for name2obj */ struct object_type *ot_children; /* .. */ } object_type, *OT; #define NULLOT ((OT) 0) OT name2obj (), text2obj (); struct object_name { char *on_name; /* OBJECT DESCRIPTOR */ char *on_value; /* OBJECT IDENTIFIER */ }; #endif