|
|
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: 1330 (0x532)
Types: TextFile
Names: »mosy.h«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
└─⟦eba4602b1⟧ »./isode-5.0.tar.Z«
└─⟦d3ac74d73⟧
└─⟦this⟧ »isode-5.0/others/mosy/mosy.h«
/* mosy.h - include file for MOSY users */
/*
* $Header: /f/osi/others/mosy/RCS/mosy.h,v 6.0 89/03/18 23:36:08 mrose Rel $
*
*
* $Log: mosy.h,v $
* Revision 6.0 89/03/18 23:36:08 mrose
* Release 5.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 <isode/manifest.h>
#include <isode/general.h>
#include <isode/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