mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02: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";
|
||
|
|
}
|