1
0
Fork 0
x64dbg/x64_dbg_dbg/Analysis/ApiDB.h

24 lines
287 B
C++

#pragma once
#include "Meta.h"
#include <list>
namespace tr4ce
{
class ApiDB
{
private:
bool mValid; // "database" ok ?
public:
ApiDB(void);
~ApiDB(void);
const bool ok() const;
FunctionInfo_t find(std::string name);
std::list<FunctionInfo_t> mInfo;
};
};