home *** CD-ROM | disk | FTP | other *** search
-
- /*
- **
- ** This File Is GENERATED By genosntab.
- **
- */
-
- extern int osnsgl(); /* single task private */
- extern int osnptt(); /* pipe two task */
- extern int osnftt(); /* Fast two task */
- struct ifcdef
- {
- int (*ifcfun)(); /* connect function */
- char * ifcfnm; /* fixed name */
- char * ifcprf; /* interface prefix w/ delimeter (P:,S:,TT:,...) */
- char * ifcdsc; /* interface description (private,shared,...) */
- char * ifcdfl; /* char * to pass if none from attach */
- char * ifcprm; /* add'l parameter char * for connect calls */
- };
- typedef struct ifcdef ifcdef;
-
- ifcdef osntab[] =
- {
- /* FUNC NAME PREFIX DESCRIPTION DFLT PARAM */
- # if defined(SYS_SGL)
- { osnsgl, "SINGLE_TASK:", "S:", "Single task", "", ""},
- # else
- { osnptt, "PIPE_TWO_TASK:", "P:", "Pipe Two-Task","", ""},
- { osnftt, "FAST_TWO_TASK:", "F:", "Fast Two-Task","", ""},
- # endif
- { 0,0,0,0,0,0 }
- };
- ifcdef *osndfn = &osntab[0]; /* without host: default is single */
- ifcdef *osndfh = &osntab[0]; /* with host: default is Two Task */
-