forked from microsoft/terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Obstruct the user when they try to run WT under WOW (microsoft#1648)
* Obstruct the user when they try to run under WOW * Move strings to resource file, add comments to methods, remove extraneous wil include. * remove excess newline * output of formatter.
- Loading branch information
Showing
4 changed files
with
128 additions
and
8 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 |
---|---|---|
|
@@ -50,3 +50,4 @@ Module Name: | |
#include <winrt/Windows.ui.xaml.media.h> | ||
|
||
#include <wil/resource.h> | ||
#include <wil/win32_helpers.h> |
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 |
---|---|---|
@@ -1,16 +1,23 @@ | ||
//{{NO_DEPENDENCIES}} | ||
// Microsoft Visual C++ generated include file. | ||
// Used by Cascadia.EXE.rc | ||
// Used by WindowsTerminal.rc | ||
// | ||
#define IDI_APPICON 101 | ||
#define IDS_ERROR_DIALOG_TITLE 105 | ||
#define IDS_ERROR_ARCHITECTURE_FORMAT 110 | ||
#define IDS_X86_ARCHITECTURE 111 | ||
#define IDS_AMD64_ARCHITECTURE 112 | ||
#define IDS_ARM64_ARCHITECTURE 113 | ||
#define IDS_ARM_ARCHITECTURE 114 | ||
#define IDS_UNKNOWN_ARCHITECTURE 115 | ||
|
||
// Next default values for new objects | ||
// | ||
#ifdef APSTUDIO_INVOKED | ||
#ifndef APSTUDIO_READONLY_SYMBOLS | ||
#define _APS_NEXT_RESOURCE_VALUE 103 | ||
#define _APS_NEXT_RESOURCE_VALUE 104 | ||
#define _APS_NEXT_COMMAND_VALUE 40001 | ||
#define _APS_NEXT_CONTROL_VALUE 1001 | ||
#define _APS_NEXT_SYMED_VALUE 101 | ||
#endif | ||
#endif | ||
|
||
#define IDI_APPICON 101 |