1 /*****************************************************************************/
2 /*                                                                           */
3 /*                 (C)  Copyright 1992-1997 Alberto Pasquale                 */
4 /*                                                                           */
5 /*                   A L L   R I G H T S   R E S E R V E D                   */
6 /*                                                                           */
7 /*****************************************************************************/
8 /*                                                                           */
9 /* This source code is NOT in the public domain and it CANNOT be used or     */
10 /* distributed without written permission from the author.                   */
11 /*                                                                           */
12 /*****************************************************************************/
13 /*                                                                           */
14 /* How to contact the author:  Alberto Pasquale of 2:332/504@fidonet         */
15 /*                             Viale Verdi 106                               */
16 /*                             41100 Modena                                  */
17 /*                             Italy                                         */
18 /*                                                                           */
19 /*****************************************************************************/
20 
21 // ParseTyp.cpp
22 
23 #ifdef __OS2__
24     #define INCL_DOS
25     #include <os2.h>
26 #endif
27 
28 #include <string.h>
29 #include "misc.hpp"
30 #include "parsetyp.hpp"
31 
32 
Init(InpOut * cio,time_t * pft,char * name)33 void CioThis::Init (InpOut *cio, time_t *pft, char *name)
34 {
35     PwdFileTime = pft;
36     NodeName    = name;
37     ia = &cio->IncAddr;    // Current Tail for Lists
38     ea = &cio->ExcAddr;
39     pw = &cio->Password;
40     ph = &cio->Phone;
41     nf = &cio->NodeFlags;
42     fl = &cio->Flags;
43     cs = &cio->Cost;
44 }
45 
46 
47 
48