diff --git a/.github/actions/spelling/expect/expect.txt b/.github/actions/spelling/expect/expect.txt index 2de1494a028..39db2b84eda 100644 --- a/.github/actions/spelling/expect/expect.txt +++ b/.github/actions/spelling/expect/expect.txt @@ -546,7 +546,6 @@ Edgium EDITKEYS EDITTEXT EDITUPDATE -edputil Efast efghijklmn EHsc diff --git a/src/host/res.rc b/src/host/res.rc index b35e9c87929..6f566147e33 100644 --- a/src/host/res.rc +++ b/src/host/res.rc @@ -61,9 +61,6 @@ BEGIN ID_CONSOLE_FMT_WINDOWTITLE, "%s%s" -/* WIP Audit destination name */ - ID_CONSOLE_WIP_DESTINATIONNAME, "console application" - /* Menu items that replace the standard ones. These don't have the accelerators */ SC_CLOSE, "&Close" diff --git a/src/host/resource.h b/src/host/resource.h index f81be52a827..9ea8cf549b6 100644 --- a/src/host/resource.h +++ b/src/host/resource.h @@ -28,7 +28,6 @@ Author(s): #define ID_CONSOLE_MSGMARKMODE 0x100C #define ID_CONSOLE_MSGSCROLLMODE 0x100D #define ID_CONSOLE_FMT_WINDOWTITLE 0x100E -#define ID_CONSOLE_WIP_DESTINATIONNAME 0x100F // Menu Item strings #define ID_CONSOLE_COPY 0xFFF0 diff --git a/src/host/sources.inc b/src/host/sources.inc index 92b2629aaf8..17fd8f8df14 100644 --- a/src/host/sources.inc +++ b/src/host/sources.inc @@ -138,7 +138,6 @@ TARGETLIBS = \ $(ONECOREUAP_EXTERNAL_SDK_LIB_PATH)\d3d11.lib \ $(MODERNCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\api-ms-win-mm-playsound-l1.lib \ $(ONECORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-dwmapi-ext-l1.lib \ - $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-edputil-policy-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-create-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-draw-l1.lib \ @@ -206,7 +205,6 @@ DELAYLOAD = \ api-ms-win-shell-dataobject-l1.dll; \ api-ms-win-shell-namespace-l1.dll; \ ext-ms-win-dwmapi-ext-l1.dll; \ - ext-ms-win-edputil-policy-l1.dll; \ ext-ms-win-usp10-l1.dll; \ ext-ms-win-gdi-dc-l1.dll; \ ext-ms-win-gdi-dc-create-l1.dll; \ diff --git a/src/inc/conint.h b/src/inc/conint.h index 2a3c8d0fd54..495b390f2bb 100644 --- a/src/inc/conint.h +++ b/src/inc/conint.h @@ -35,11 +35,6 @@ namespace Microsoft::Console::Internal } - namespace EdpPolicy - { - void AuditClipboard(const std::wstring_view destinationName) noexcept; - } - namespace Theming { [[nodiscard]] HRESULT TrySetDarkMode(HWND hwnd) noexcept; diff --git a/src/interactivity/win32/Clipboard.cpp b/src/interactivity/win32/Clipboard.cpp index be97047404c..684eb6d70a1 100644 --- a/src/interactivity/win32/Clipboard.cpp +++ b/src/interactivity/win32/Clipboard.cpp @@ -75,8 +75,6 @@ void Clipboard::Paste() StringPaste(pwstr, (ULONG)GlobalSize(ClipboardDataHandle) / sizeof(WCHAR)); // WIP auditing if user is enrolled - static auto DestinationName = _LoadString(ID_CONSOLE_WIP_DESTINATIONNAME); - Microsoft::Console::Internal::EdpPolicy::AuditClipboard(DestinationName); GlobalUnlock(ClipboardDataHandle); diff --git a/src/interactivity/win32/resource.h b/src/interactivity/win32/resource.h index f453557218c..9b82b787ec0 100644 --- a/src/interactivity/win32/resource.h +++ b/src/interactivity/win32/resource.h @@ -25,7 +25,6 @@ Author(s): #define ID_CONSOLE_MSGMARKMODE 0x100C #define ID_CONSOLE_MSGSCROLLMODE 0x100D #define ID_CONSOLE_FMT_WINDOWTITLE 0x100E -#define ID_CONSOLE_WIP_DESTINATIONNAME 0x100F // Menu Item strings #define ID_CONSOLE_COPY 0xFFF0 diff --git a/src/interactivity/win32/ut_interactivity_win32/sources b/src/interactivity/win32/ut_interactivity_win32/sources index 0bfe9148eae..1f417647e44 100644 --- a/src/interactivity/win32/ut_interactivity_win32/sources +++ b/src/interactivity/win32/ut_interactivity_win32/sources @@ -51,7 +51,6 @@ TARGETLIBS = \ $(ONECOREUAP_EXTERNAL_SDK_LIB_PATH)\d3dcompiler.lib \ $(MODERNCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\api-ms-win-mm-playsound-l1.lib \ $(ONECORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-dwmapi-ext-l1.lib \ - $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-edputil-policy-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-create-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-draw-l1.lib \ @@ -116,7 +115,6 @@ DELAYLOAD = \ api-ms-win-shell-dataobject-l1.dll; \ api-ms-win-shell-namespace-l1.dll; \ ext-ms-win-dwmapi-ext-l1.dll; \ - ext-ms-win-edputil-policy-l1.dll; \ ext-ms-win-gdi-dc-l1.dll; \ ext-ms-win-gdi-dc-create-l1.dll; \ ext-ms-win-gdi-draw-l1.dll; \ diff --git a/src/internal/stubs.cpp b/src/internal/stubs.cpp index f0cf811b017..3ac946a209a 100644 --- a/src/internal/stubs.cpp +++ b/src/internal/stubs.cpp @@ -21,10 +21,6 @@ using namespace Microsoft::Console::Internal; return S_OK; } -void EdpPolicy::AuditClipboard(const std::wstring_view /*destinationName*/) noexcept -{ -} - [[nodiscard]] HRESULT Theming::TrySetDarkMode(HWND /*hwnd*/) noexcept { return S_FALSE; diff --git a/src/propsheet/sources b/src/propsheet/sources index 648dd1d1c12..033d3a5396d 100644 --- a/src/propsheet/sources +++ b/src/propsheet/sources @@ -84,7 +84,6 @@ TARGETLIBS = \ $(ONECORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\onecoreuap_internal.lib \ $(ONECOREUAP_INTERNAL_SDK_LIB_PATH)\onecoreuapuuid.lib \ $(ONECORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-dwmapi-ext-l1.lib \ - $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-edputil-policy-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-create-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-draw-l1.lib \ @@ -109,7 +108,6 @@ TARGETLIBS = \ DELAYLOAD = \ ext-ms-win-dwmapi-ext-l1.dll; \ - ext-ms-win-edputil-policy-l1.dll; \ ext-ms-win-uxtheme-themes-l1.dll; \ ext-ms-win-shell32-shellfolders-l1.dll; \ ext-ms-win-gdi-dc-l1.dll; \ diff --git a/src/terminal/adapter/ut_adapter/sources b/src/terminal/adapter/ut_adapter/sources index 81cb43dcfaa..8b931860d9a 100644 --- a/src/terminal/adapter/ut_adapter/sources +++ b/src/terminal/adapter/ut_adapter/sources @@ -49,7 +49,6 @@ TARGETLIBS = \ $(ONECOREUAP_EXTERNAL_SDK_LIB_PATH)\d3dcompiler.lib \ $(MODERNCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\api-ms-win-mm-playsound-l1.lib \ $(ONECORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-dwmapi-ext-l1.lib \ - $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-edputil-policy-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-create-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-draw-l1.lib \ @@ -111,7 +110,6 @@ DELAYLOAD = \ api-ms-win-shell-dataobject-l1.dll; \ api-ms-win-shell-namespace-l1.dll; \ ext-ms-win-dwmapi-ext-l1.dll; \ - ext-ms-win-edputil-policy-l1.dll; \ ext-ms-win-usp10-l1.dll; \ ext-ms-win-gdi-dc-l1.dll; \ ext-ms-win-gdi-dc-create-l1.dll; \ diff --git a/src/terminal/parser/ut_parser/sources b/src/terminal/parser/ut_parser/sources index e754a4e01c2..d4da3cf1d49 100644 --- a/src/terminal/parser/ut_parser/sources +++ b/src/terminal/parser/ut_parser/sources @@ -39,7 +39,6 @@ TARGETLIBS = \ $(ONECOREUAP_EXTERNAL_SDK_LIB_PATH)\d3dcompiler.lib \ $(MODERNCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\api-ms-win-mm-playsound-l1.lib \ $(ONECORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-dwmapi-ext-l1.lib \ - $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-edputil-policy-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-dc-create-l1.lib \ $(MINCORE_INTERNAL_PRIV_SDK_LIB_VPATH_L)\ext-ms-win-gdi-draw-l1.lib \ @@ -102,7 +101,6 @@ DELAYLOAD = \ api-ms-win-shell-dataobject-l1.dll; \ api-ms-win-shell-namespace-l1.dll; \ ext-ms-win-dwmapi-ext-l1.dll; \ - ext-ms-win-edputil-policy-l1.dll; \ ext-ms-win-gdi-dc-l1.dll; \ ext-ms-win-gdi-dc-create-l1.dll; \ ext-ms-win-gdi-draw-l1.dll; \