| | |
| | | {V_XEN, "XEN"}, |
| | | {KVM, "KVM"}, |
| | | {HV, "Microsoft Hypervisor"}, |
| | | {PARALLELS, "Parallels Desktop"}, |
| | | {V_OTHER, "Other type of vm"}}; |
| | | |
| | | const unordered_map<int, string> descByVirt = {{LCC_API_VIRTUALIZATION_SUMMARY::NONE, "No virtualization"}, |
| | |
| | | for (CSimpleIniA::Entry section : sections) { |
| | | const string section_name(section.pItem, 15); |
| | | if (section_name != LCC_PROJECT_NAME) { |
| | | std::copy(section_name.begin(), section_name.end(), callerInformation.project_name); |
| | | std::copy(section_name.begin(), section_name.end(), callerInformation.feature_name); |
| | | LCC_EVENT_TYPE result = acquire_license(&callerInformation, &licLocation, &licenseInfo); |
| | | if (result == LICENSE_OK) { |
| | | cout << "project [" << section.pItem << "]: license OK" << endl; |