-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use bitflags::bitflags; | ||
|
||
use windows::Win32::System::Diagnostics::Etw; | ||
|
||
bitflags! { | ||
pub struct TraceFlags: u32 { | ||
const EVENT_ENABLE_PROPERTY_IGNORE_KEYWORD_0 = Etw::EVENT_ENABLE_PROPERTY_IGNORE_KEYWORD_0; | ||
const EVENT_ENABLE_PROPERTY_PROVIDER_GROUP = Etw::EVENT_ENABLE_PROPERTY_PROVIDER_GROUP; | ||
const EVENT_ENABLE_PROPERTY_PROCESS_START_KEY = Etw::EVENT_ENABLE_PROPERTY_PROCESS_START_KEY; | ||
const EVENT_ENABLE_PROPERTY_EVENT_KEY = Etw::EVENT_ENABLE_PROPERTY_EVENT_KEY; | ||
const EVENT_ENABLE_PROPERTY_EXCLUDE_INPRIVATE = Etw::EVENT_ENABLE_PROPERTY_EXCLUDE_INPRIVATE; | ||
const EVENT_ENABLE_PROPERTY_SID = Etw::EVENT_ENABLE_PROPERTY_SID; | ||
const EVENT_ENABLE_PROPERTY_TS_ID = Etw::EVENT_ENABLE_PROPERTY_TS_ID; | ||
const EVENT_ENABLE_PROPERTY_STACK_TRACE = Etw::EVENT_ENABLE_PROPERTY_STACK_TRACE; | ||
} | ||
} |