home *** CD-ROM | disk | FTP | other *** search
- (*─────────────────────────────────────────────────────────────────────────*)
- (* OLMS 2.01 USERS.DAT file structure. This structure may be used freely *)
- (* by third party software developers. *)
- (* *)
- (* This document is copyrighted 1994, by Multiboard Communications Centre *)
- (*─────────────────────────────────────────────────────────────────────────*)
-
- Const
- MaxFilters = 15;
- MaxKeywords = 15;
- MaxTwits = 15;
- MaxRequests = 10;
- MaxAreas = 2000;
-
- Type
- USERSDATrecord =
- Record
- Name : String[35];
- LocalName : String[8];
- LastDateDownload : String[8];
- LastTimeDownload : String[5];
- LastFileScan : Longint;
- TotalFilesDownloaded,
- TotalDownloads : Word;
- Archiver,
- Protocol : Char;
- NetworkQWKIdentifer,
- CurrentRecordNumber : Word;
- Password : String[10]; (* NOT IMPLEMENTED *)
- MaxPacket,
- MaxConference : Word;
- CreateIndexes,
- SearchNewFiles,
- VacationMail,
- KeepKludges,
- CollectNews,
- GlobalKeywords,
- GlobalPersonal,
- FilterPersonal,
- TwitPersonal,
- ShortConferenceList,
- DeletedRecord,
- IgnoreLimits,
- NumericExtension : Boolean;
- CurrentExtension : Word;
- RevisionLevel : Longint;
- PacketType : Byte; { Byte 0: QWK }
- { 1: QWKE }
- { 2: Reserved }
- { 3: BLUEWAVE }
- UseHighBit,
- CollectWelcomeScreens : Boolean;
- CollectBulletins : Array[0..3] Of Byte; (* BITMAPPED *)
- TodayDownloads,
- FileQueue_Current : Byte;
- FileQueue_Names : Array[1..MaxRequests] Of String[12];
- FileQueue_IsAttach : Array[1..MaxRequests] Of Boolean;
- TodayFileDownloads : Byte;
- RESERVED : Array[155..250] Of Byte;
- Filters : Array[1..MaxKeywords] Of String[20];
- Keywords : Array[1..MaxFilters] Of String[20];
- Twits : Array[1..MaxTwits] Of String[25];
- Flags : Array[1..MaxAreas] Of Byte;
-
- { Bit 0: General messages }
- { 1: Personal messages }
- { 2: All messages }
- { 3: Written by self }
- { 4: Apply keywords }
- { 5: Apply filters }
- { 6: Connected to QWK network }
- { 7: Access to QWK network }
- End;
-