VIRUSDAT.C
上传用户:cuilin0620
上传日期:2007-01-13
资源大小:33k
文件大小:1k
源码类别:

杀毒

开发平台:

C/C++

  1. /*
  2. VIRUSDAT.C
  3. Kevin Dean
  4. Fairview Mall P.O. Box 55074
  5. 1800 Sheppard Avenue East
  6. Willowdale, Ontario
  7. CANADA    M2J 5B9
  8. March 24, 1991
  9. This module defines the _viruscrc variable used by the anti-virus CRC
  10. check.  The default search string used by the CRCSET.EXE program is DEAN_CRC
  11. but may be changed by either modifying this file or defining another instance
  12. of _viruscrc in another file earlier in the program link.
  13. This code is public domain.
  14. */
  15. #include "viruscrc.h"
  16. const union filecrc _viruscrc =
  17.   {
  18.   'D', 'E', 'A', 'N', '_', 'C', 'R', 'C'
  19.   };