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

Method MergeDatabase

collaboration.cpp:94–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92
93
94void BinaryNinja::Collaboration::MergeDatabase(Ref<Database> database, AnalysisConflictHandler conflictHandler, ProgressFunction progress)
95{
96 ProgressContext pctxt;
97 pctxt.callback = progress;
98
99 DatabaseConflictHandlerContext chctxt;
100 chctxt.callback = conflictHandler;
101
102 if (!BNCollaborationMergeDatabase(database->m_object, DatabaseConflictHandlerCallback, &chctxt, ProgressCallback, &pctxt))
103 throw SyncException("Failed to merge database");
104}
105
106
107size_t BinaryNinja::Collaboration::PushDatabase(Ref<Database> database, Ref<RemoteFile> file, ProgressFunction progress)

Callers

nothing calls this directly

Calls 1

SyncExceptionClass · 0.85

Tested by

no test coverage detected