VirusInfo.cpp
上传用户:chaoyu
上传日期:2013-04-28
资源大小:18k
文件大小:0k
源码类别:

杀毒

开发平台:

Visual C++

  1. #include "StdAfx.h"
  2. #include ".virusinfo.h"
  3. CVirusInfo::CVirusInfo(void)
  4. {
  5. }
  6. CVirusInfo::~CVirusInfo(void)
  7. {
  8. }
  9. PCTSTR CVirusInfo::GetNameByID(DWORD dwVID)
  10. {
  11. // not really implement, just for demo
  12. PCTSTR pVName = NULL;
  13. switch(dwVID)
  14. {
  15. case 1:
  16. pVName = "Dos.Eicar";
  17. break;
  18. case 2:
  19. pVName = "NotVirus.Win32.Notepad.xp";
  20. break;
  21. case 3:
  22. pVName = "Win32.CIH.12";
  23. break;
  24. default:
  25. pVName = "Unknown error!";
  26. }
  27. return pVName;
  28. }