mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-25 16:09:54 +01:00
11 lines
162 B
C
11 lines
162 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "pch.h"
|
||
|
|
|
||
|
|
namespace globals
|
||
|
|
{
|
||
|
|
extern HMODULE instance;
|
||
|
|
extern std::atomic<ULONG> ref_count;
|
||
|
|
extern std::atomic<bool> enabled;
|
||
|
|
}
|