Files
2019-05-18 20:00:54 +03:00

16 lines
332 B
C++

#include "tdhcpp.h"
#include <iostream>
int main(int argc, const char* argv) {
std::cout << "[+] Collecting Information.." << std::endl;
std::vector<tdhcpp::EtwProviderMetadata> metadata = tdhcpp::GetEtwProviders();
for (const tdhcpp::EtwProviderMetadata& provider : metadata) {
std::wcout << provider << std::endl;
}
}