It will be something like:
auto EventList = Manager->DoWork();
for (auto Event : EventList)
{
if (Event->ErrorCode != 0)
{
// Event->ErrorMessage should have more details
}
}
It will be something like:
auto EventList = Manager->DoWork();
for (auto Event : EventList)
{
if (Event->ErrorCode != 0)
{
// Event->ErrorMessage should have more details
}
}