MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / Insert

Method Insert

workflow.cpp:541–549  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

539
540
541bool Workflow::Insert(const string& activity, const string& newActivity)
542{
543 char* buffer[1];
544 buffer[0] = BNAllocString(newActivity.c_str());
545
546 bool result = BNWorkflowInsert(m_object, activity.c_str(), (const char**)buffer, 1);
547 BNFreeString(buffer[0]);
548 return result;
549}
550
551
552bool Workflow::Insert(const string& activity, const vector<string>& activities)

Callers 4

RegisterMethod · 0.45
RegisterMethod · 0.45
plugin.cppFile · 0.45
CorePluginInitFunction · 0.45

Calls 2

c_strMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected