|
|
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 p
Length: 868 (0x364)
Types: TextFile
Names: »prm.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
└─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z«
└─⟦e5a54fb17⟧
└─⟦this⟧ »pp-5.0/h/prm.h«
/* prm.h: submit parameter structure */
/*
* @(#) $Header: /cs/research/pp/hubris/pp-beta/h/RCS/prm.h,v 5.0 90/09/20 16:50:52 pp Exp Locker: pp $
*
* $Log: prm.h,v $
* Revision 5.0 90/09/20 16:50:52 pp
* rcsforce : 5.0 public release
*
*
*/
#ifndef _H_PRM
#define _H_PRM
/*
When talking to submit this is the initial structure that is passed down.
All the work should be done by mm_winit() to which is passed the relevent
structure
*/
struct prm_vars {
char *prm_logfile; /* log file */
int prm_loglevel; /* level of logging */
int prm_opts; /* various options*/
/* prm_opts is a bit field: (more to follow) */
#define PRM_OPTS_TOTAL 2
#define PRM_NONE 0x0
#define PRM_ACCEPTALL 0x1
#define PRM_NOTRACE 0x2
char *prm_passwd;
};
extern void prm_init ();
extern void prm_free ();
#endif