mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08:00
10 lines
151 B
C
10 lines
151 B
C
|
#pragma once
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <Windows.h>
|
||
|
|
||
|
namespace cmdArg
|
||
|
{
|
||
|
const inline wchar_t* RUN_NONELEVATED = L"-run-non-elevated";
|
||
|
}
|