mirror of
https://github.com/repnz/etw-providers-docs
synced 2026-06-08 17:06:44 +00:00
16 lines
332 B
C++
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;
|
|
}
|
|
}
|
|
|
|
|