You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
562 B
22 lines
562 B
3 years ago
|
#pragma once
|
||
|
#ifndef _XVNENG_H
|
||
|
#define _XVNENG_H
|
||
|
|
||
|
#pragma comment ( lib, "xvneng.lib" )
|
||
|
|
||
|
struct ScanResult {
|
||
|
bool isMalware;
|
||
|
double score;
|
||
|
char* name;
|
||
|
};
|
||
|
|
||
|
__declspec(dllimport) void load(bool force);
|
||
|
__declspec(dllimport) void unload();
|
||
|
__declspec(dllimport) ScanResult scan(const wchar_t* filepath);
|
||
|
__declspec(dllimport) char* scanAsString(const wchar_t* filepath);
|
||
|
__declspec(dllimport) char* checkUpdates(bool checkSDKUpdates, bool loadDBAfterUpdate);
|
||
|
__declspec(dllimport) char* getSettings();
|
||
|
__declspec(dllimport) char* version();
|
||
|
|
||
|
#endif // _XVNENG_H
|