Narrow Win32 runtime shell surface

This commit is contained in:
2026-06-17 11:55:13 +02:00
parent 18ed47aa81
commit 30a07888da
6 changed files with 21 additions and 13 deletions

View File

@@ -75,6 +75,15 @@ Latest slice:
`windows_runtime_flow.cpp`.
- `src/platform_windows/windows_runtime_flow.cpp` is now a thinner handoff
layer over that Windows session helper.
- `src/platform_windows/windows_runtime_shell.h` no longer exposes the removed
runtime-session entrypoint or drags bootstrap/splash declarations through the
broader shell header surface.
- `src/platform_windows/windows_runtime_shell.cpp` now hands runtime execution
directly to `run_bound_main_window_runtime(...)` instead of keeping a second
wrapper around that seam.
- `src/main.cpp` now includes `windows_bootstrap_helpers.h` directly for
`run_winmain_entry(...)` instead of relying on a transitive declaration
through the Windows runtime shell header.
- `src/platform_windows/windows_runtime_flow.*` now owns the Win32 bound-app
startup/message-loop/shutdown orchestration that used to live in
`windows_runtime_shell.cpp`.