home *** CD-ROM | disk | FTP | other *** search
- {
- virusdat.pas
- Stealth Bomber Version 2.2
-
- Kevin Dean
- Fairview Mall P.O. Box 55074
- 1800 Sheppard Avenue East
- Willowdale, Ontario
- CANADA M2J 5B9
- CompuServe ID: 76336,3114
-
- February 10, 1992
-
- This module defines the _FCRC array used by the anti-virus CRC check.
- The default search string used by the CRCSET.EXE program is _STEALTH but may
- be changed by either modifying this file or defining another instance of _FCRC
- in another file earlier in the program link.
-
- This code is public domain.
- }
-
-
- unit VirusDat;
-
-
- interface
-
-
- uses
- VirCheck;
-
-
- const
- StealthNFiles = 1;
-
-
- const
- _FCRC : array [1 .. StealthNFiles] of FileCRC =
- (
- (
- SearchStr : ('_', 'S', 'T', 'E', 'A', 'L', 'T', 'H')
- )
- { *** Add as many instances of the following 3 lines necessary to fill the array.
- ,(
- SearchStr : (' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ')
- )
- }
- );
-
-
- implementation
-
-
- end.
-