mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 15:27:55 +08: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;
|
||
|
}
|