VirusDB.h
资源名称:BAV.v2.rar [点击查看]
上传用户:chaoyu
上传日期:2013-04-28
资源大小:18k
文件大小:0k
源码类别:
杀毒
开发平台:
Visual C++
- #pragma once
- class CScanObject;
- class CVirusDB
- {
- public:
- CVirusDB(void);
- ~CVirusDB(void);
- list<PVRECORD> m_listVRecords;
- bool Load(IN const char* pszDBFile);
- bool Unload();
- // Return Value:
- // If the function succeeds, the return value is Virus ID or 0.
- // If the function fails, the return value is 0xFFFFFFFF.
- DWORD Search(IN CScanObject* pScanObj);
- bool GetNameFromID(IN DWORD dwVID, OUT CString* pVName);
- };