Extract Win32 runtime state storage

This commit is contained in:
2026-06-17 11:34:14 +02:00
parent ba94785eda
commit 0cf6a6ea4f
6 changed files with 66 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <memory>
class App;
class WacomTablet;
namespace pp::platform::windows {
[[nodiscard]] std::unique_ptr<App>& retained_owned_app() noexcept;
[[nodiscard]] WacomTablet& retained_wacom_tablet() noexcept;
}