mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 10:19:20 +08:00
0709b0648a
* bootstrapper: add --extract_msi arg for users that must access MSI - clean up setting outdated MSI properties - minor fixes
20 lines
729 B
C
20 lines
729 B
C
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
|
|
SHELLEXECUTEINFOW launch_action_runner(const wchar_t* cmdline);
|
|
|
|
const inline wchar_t* UPDATE_NOW_LAUNCH_STAGE1_START_PT_CMDARG = L"-update_now_and_start_pt";
|
|
const inline wchar_t* UPDATE_NOW_LAUNCH_STAGE1_CMDARG = L"-update_now";
|
|
|
|
const inline wchar_t* UPDATE_NOW_LAUNCH_STAGE2_CMDARG = L"-update_now_stage_2";
|
|
const inline wchar_t* UPDATE_STAGE2_RESTART_PT_CMDARG = L"restart";
|
|
const inline wchar_t* UPDATE_STAGE2_DONT_START_PT_CMDARG = L"dont_start";
|
|
|
|
const inline wchar_t * UNINSTALL_MSI_CMDARG = L"-uninstall_msi";
|
|
const inline wchar_t * RUN_NONELEVATED_CMDARG = L"-run-non-elevated";
|
|
|
|
const inline wchar_t* UPDATE_REPORT_SUCCESS = L"-report_update_success";
|
|
|