mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 02:06:36 +02:00
12 lines
242 B
C++
12 lines
242 B
C++
|
|
#include "pch.h"
|
||
|
|
#include "winstore.h"
|
||
|
|
|
||
|
|
#include <appmodel.h>
|
||
|
|
|
||
|
|
bool running_as_packaged()
|
||
|
|
{
|
||
|
|
UINT32 length = 0;
|
||
|
|
const auto rc = GetPackageFamilyName(GetCurrentProcess(), &length, nullptr);
|
||
|
|
return rc != APPMODEL_ERROR_NO_PACKAGE;
|
||
|
|
}
|