blob: 9dcf66cbfecb06f00338c4fea4a9a05be9f2b2e6 (
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
28
29
30
31
32
|
#include "binaryninjaapi.h"
using namespace BinaryNinja;
using namespace std;
vector<UpdateChannel> UpdateChannel::GetList()
{
size_t count;
char* errors;
BNUpdateChannel* channels = BNGetUpdateChannels(&count, &errors);
if (errors)
{
string errorStr = errors;
BNFreeString(errors);
throw UpdateException(errorStr);
}
vector<UpdateChannel> result;
for (size_t i = 0; i < count; i++)
{
UpdateChannel channel;
channel.name = channels[i].name;
channel.description = channels[i].description;
channel.latestVersion = channels[i].latestVersion;
result.push_back(channel);
}
BNFreeUpdateChannelList(channels, count);
return result;
}
|