mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
19 lines
415 B
C++
19 lines
415 B
C++
#pragma once
|
|
|
|
#include <vcpkg/base/chrono.h>
|
|
#include <vcpkg/base/util.h>
|
|
|
|
#include <atomic>
|
|
|
|
namespace vcpkg
|
|
{
|
|
struct GlobalState
|
|
{
|
|
static Util::LockGuarded<Chrono::ElapsedTime> timer;
|
|
static std::atomic<bool> debugging;
|
|
static std::atomic<bool> feature_packages;
|
|
|
|
static std::atomic<int> g_init_console_cp;
|
|
static std::atomic<int> g_init_console_output_cp;
|
|
};
|
|
} |