Files
Septor da66c3a28a Add trace parsing from a file instead of realtime (#206)
* Add trace parsing from a file instead of realtime

Add a new interface set_trace_filename() that will enable reading from
an ETL file rather than real-time capture.

Also added a new NativeExample that demonstrates this capability.

* Minor cleanup to address code review items.

* Bump nuget version
2023-04-03 15:41:03 -07:00

24 lines
811 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();
//user_trace_008_stacktrace::start();
//user_trace_009_from_file::start();
}