home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / NVDC87.ZIP / PROCESS.ZIP / PASSDATA.TYP < prev   
Encoding:
Text File  |  1987-08-17  |  449 b   |  13 lines

  1. (* =========================================== *)
  2. (* PARENT and CHILDA share this file.  This    *)
  3. (* is necessary to be sure the fields in the   *)
  4. (* pointer to the shared area will be correct. *)
  5. (* =========================================== *)
  6. TYPE
  7.   passdata = RECORD
  8.                password : string[80];
  9.                name     : string[80];
  10.                number   : integer;
  11.                status   : word;
  12.              END;
  13.