win-capture: Add additional exe to window capture blacklist

These are additional internal windows processes that should not
be listed in the window capture dropdown.
This commit is contained in:
Joel Bethke 2019-10-16 19:47:43 -05:00
parent 156e2f3aec
commit 6fb3552d70

View File

@ -128,12 +128,23 @@ void get_window_class(struct dstr *class, HWND hwnd)
/* not capturable or internal windows */
static const char *internal_microsoft_exes[] = {
"startmenuexperiencehost",
"applicationframehost",
"peopleexperiencehost",
"shellexperiencehost",
"microsoft.notes",
"windowsinternal",
"systemsettings",
"textinputhost",
"winstore.app",
"searchapp",
"video.ui",
"searchui",
"lockapp",
"cortana",
"gamebar",
"tabtip",
"time",
NULL,
};