|
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 c
Length: 2537 (0x9e9) Types: TextFile Names: »common.h«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/h/quipu/common.h«
/* common.h - */ /* * $Header: /f/osi/h/quipu/RCS/common.h,v 6.0 89/03/18 23:32:45 mrose Rel $ * * * $Log: common.h,v $ * Revision 6.0 89/03/18 23:32:45 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 COMH #define COMH #include "quipu/attrvalue.h" #include "quipu/dsp.h" #include "quipu/commonarg.h" #include "quipu/bind.h" #include "quipu/read.h" #include "quipu/compare.h" #include "quipu/abandon.h" #include "quipu/list.h" #include "quipu/ds_search.h" #include "quipu/add.h" #include "quipu/modify.h" #include "quipu/modifyrdn.h" #include "quipu/remove.h" #include "quipu/ds_error.h" typedef struct simple_creds { DN usc_dn; int usc_passwd_len; char *usc_passwd; } USC; typedef struct part_outcome { int poq_limitproblem; ContinuationRef poq_cref; int poq_no_ext; } POQ; /* Comment out the procedures ds_bind (arg, error, result) struct ds_bind_arg *arg; struct ds_bind_arg *result; -- note arg and result have same -- structure struct ds_bind_error *error; ds_unbind () ds_read (arg, error, result) struct ds_read_arg *arg; struct ds_read_result *result; struct DSError *error; ds_compare (arg, error, result) struct ds_compare_arg *arg; struct ds_compare_result *result; struct DSError *error; ds_abandon (arg, error) struct ds_abandon_arg *arg; struct DSError *error; ds_list (arg, error, result) struct ds_list_arg *arg; struct ds_list_result *result; struct DSError *error; ds_search (arg, error, result) struct ds_search_arg *arg; struct ds_search_result *result; struct DSError *error; ds_addentry (arg, error) struct ds_addentry_arg *arg; struct DSError *error; ds_removeentry (arg, error) struct ds_removeentry_arg *arg; struct DSError *error; ds_modifyentry (arg, error) struct ds_modifyentry_arg *arg; struct DSError *error; ds_modifyrdn (arg, error) struct ds_modifyrdn_arg *arg; struct ds_read_result *result; struct DSError *error; End of commenting out procedures */ #endif