home *** CD-ROM | disk | FTP | other *** search
- (*
- ** Request.Inc (FrontDoor)
- **
- ** Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
- **
- ** REQUEST.FD format for FrontDoor 2.00+
- **
- ** Last revision: 91-10-02
- **
- ** -------------------------------------------------------------------------
- ** This information is not necessarily final and is subject to change at any
- ** given time without further notice
- ** -------------------------------------------------------------------------
- *)
-
- CONST
- ACTIVE = $01;
- DELETED = $02; (* Never written to disk *)
-
-
- (*
- ** The "filename" and "password" fields are NUL terminated.
- *)
- TYPE
- RequestRec = RECORD
- FileName : Array[1..41] of char; (* Filename or unique portion thereof *)
- Password : Array[1..17] of char; (* Password *)
- Status : byte; (* 0==Inactive *)
- End;
-
- (* end of file "Request.Inc" *)
-