blob: 67ccb8fe5b432d115d56053557084040c927bad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include "binaryninjaapi.h"
using namespace BinaryNinja;
#ifndef SHAREDCACHE_SHAREDCACHEWORKFLOW_H
#define SHAREDCACHE_SHAREDCACHEWORKFLOW_H
class SharedCacheWorkflow
{
public:
static void ProcessOffImageCall(Ref<AnalysisContext> ctx, Ref<Function> func, Ref<MediumLevelILFunction> il, const MediumLevelILInstruction instr, ExprId exprIndex, bool applySymbolIfFoundToCurrentFunction = false);
static void FixupStubs(Ref<AnalysisContext> ctx);
static void Register();
};
#ifdef __cplusplus
extern "C" {
#endif
void RegisterSharedCacheWorkflow();
#ifdef __cplusplus
}
#endif
#endif //SHAREDCACHE_SHAREDCACHEWORKFLOW_H
|