//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
namespace System.Runtime.Diagnostics
{
///
/// enum ActivityControl
///
internal enum ActivityControl : uint
{
///
/// Get the activity Id from the thread
///
EVENT_ACTIVITY_CTRL_GET_ID = 1,
///
/// Set the activity Id to the thread
///
EVENT_ACTIVITY_CTRL_SET_ID = 2,
///
/// Create the activity Id
///
EVENT_ACTIVITY_CTRL_CREATE_ID = 3,
///
/// Get the activity Id from the thread and set it
///
EVENT_ACTIVITY_CTRL_GET_SET_ID = 4,
///
/// Create an activity Id and set it to the thread
///
EVENT_ACTIVITY_CTRL_CREATE_SET_ID = 5
}
}