blob: b3291aae3cc49c9eadc8a315bb994edb2260752b [file] [log] [blame]
Zane Shelley5a266612019-08-15 16:23:53 -05001#include <hei_main.hpp>
Zane Shelley465e0b32019-04-17 10:15:39 -05002
Zane Shelley465e0b32019-04-17 10:15:39 -05003int main()
4{
Zane Shelleya61f4c52019-08-01 13:58:49 -05005 void * buffer = nullptr;
6 size_t sz_buffer = 0;
Zane Shelley465e0b32019-04-17 10:15:39 -05007
Zane Shelley5a266612019-08-15 16:23:53 -05008 libhei::initialize( buffer, sz_buffer );
Zane Shelleya61f4c52019-08-01 13:58:49 -05009
10 void * chip = nullptr;
11 libhei::ChipType_t chipType = 0;
Zane Shelley5a266612019-08-15 16:23:53 -050012 libhei::IsolationData isoData { chip, chipType };
Zane Shelleya61f4c52019-08-01 13:58:49 -050013
Zane Shelley5a266612019-08-15 16:23:53 -050014 libhei::isolate( isoData );
15
16 libhei::uninitialize();
Zane Shelley465e0b32019-04-17 10:15:39 -050017
18 return 0;
19}