Files
microsoft-krabsetw/examples/NativeExamples/main.cpp
T
John U 31679cf84b Rundown event support and examples (#155)
* added user-mode rundown support

* [bugfix] EVENT_TRACE_FLAG_DISK_FILE_IO enables events for the FileIo provider

* added examples for kernel rundown events (#138)

* added user-mode rundown support to C++/CLI API
2021-01-19 15:13:44 -08:00

22 lines
728 B
C++

// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#include "examples.h"
int main(void)
{
// Comment in/out the particular example you'd like to run.
kernel_and_user_trace_001::start();
//kernel_trace_001::start();
//kernel_trace_002::start();
//kernel_trace_003_rundown::start();
//multiple_providers_001::start();
//testing_001::start();
//user_trace_001::start();
//user_trace_002::start();
//user_trace_003_no_predicates::start();
//user_trace_004::start();
//user_trace_005::start();
//user_trace_006_predicate_vectors::start();
//user_trace_007_rundown::start();
}