mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
* Data diagnostics opt-in
* [c++] Drop DROP_PII flag
* Bump telemtry package to 2.0.2
* Drop DropPii from custom actions
* Cleanup
* Do not start manually C# EtwTrace. FZ engine exit event.
* ImageResizer, PowerRename, FileLocksmith prev handlers
* Revert C# handlers exe logging
* Revert "Revert C# handlers exe logging"
This reverts commit 4c75a3953b.
* Do not recreate EtwTrace
* consume package
* xaml formatting
* Fix deps.json audit
* Update telem package paths
* Address PR comments
* Fix AdvancedPaste close on PT close
* Override etl file name for explorer loaded dlls
Start/stop tracer when needed for explorer loaded dlls to prevent explorer overload
* Fix setting desc
* Fix missing events
* Add infobar to restart when enable data viewing
* Flush on timer every 30s
* [Settings] Update View Data diagnostic description text
[New+] Add tracer
* Show Restart info bar for both enable/disable data viewer
* Fix newplus
* Fix stuck on restart and terminate AdvPaste exe on destroy()
* [Installer] Add tracer
* Address PR comment
* Add missing tracers
* Exclude etw dir from BugReport
* Fix bad merge
* [Hosts] Proper exit on initial dialog
* [OOBE] Make Data diagnostic setting visible without scroll
* [OOBE] Add hiperlynk to open general settings
* Disable data view on disabling data diagnostics
* Don't disable View data button
* Fix disabling data viewing
* Add missing dot
* Revert formatting
33 lines
628 B
C++
33 lines
628 B
C++
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
#define NOMINMAX
|
|
// Windows Header Files:
|
|
#include <windows.h>
|
|
|
|
#include <algorithm>
|
|
#include <execution>
|
|
#include <cstdlib>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <cwchar>
|
|
#include <atlbase.h>
|
|
#include <strsafe.h>
|
|
#include <pathcch.h>
|
|
#include <shobjidl.h>
|
|
#include <shellapi.h>
|
|
#include <shlwapi.h>
|
|
#include <ShlObj_core.h>
|
|
#include <filesystem>
|
|
#include <compare>
|
|
#include <regex>
|
|
#include <vector>
|
|
#include <variant>
|
|
#include <charconv>
|
|
#include <string>
|
|
#include <random>
|
|
|
|
#include <winrt/base.h>
|