mirror of
https://github.com/microsoft/krabsetw
synced 2026-06-06 16:14:32 +00:00
da66c3a28a
* 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
80 lines
1.0 KiB
C
80 lines
1.0 KiB
C
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
#pragma once
|
|
|
|
struct kernel_and_user_trace_001
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct kernel_trace_001
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct kernel_trace_002
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct kernel_trace_003_rundown
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct multiple_providers_001
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct testing_001
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_001
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_002
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_003_no_predicates
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_004
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_005
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_006_predicate_vectors
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_007_rundown
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_008_stacktrace
|
|
{
|
|
static void start();
|
|
};
|
|
|
|
struct user_trace_009_from_file
|
|
{
|
|
static void start();
|
|
};
|