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

杀毒

开发平台:

Visual C++

  1. #pragma once
  2. class CScanObject;
  3. class CVirusDB
  4. {
  5. public:
  6. CVirusDB(void);
  7. ~CVirusDB(void);
  8. list<PVRECORD> m_listVRecords;
  9. bool Load(IN const char* pszDBFile);
  10. bool Unload();
  11. // Return Value:
  12. // If the function succeeds, the return value is Virus ID or 0.
  13. // If the function fails, the return value is 0xFFFFFFFF.
  14. DWORD Search(IN CScanObject* pScanObj);
  15. bool GetNameFromID(IN DWORD dwVID, OUT CString* pVName);
  16. };