Create initial error and netstart windows
This commit is contained in:
parent
a40f22ff73
commit
637b2b1147
23 changed files with 237 additions and 887 deletions
|
|
@ -25,6 +25,11 @@ void DisplayWindow::ExitLoop()
|
|||
Win32Window::ExitLoop();
|
||||
}
|
||||
|
||||
Size DisplayWindow::GetScreenSize()
|
||||
{
|
||||
return Win32Window::GetScreenSize();
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
std::unique_ptr<DisplayWindow> DisplayWindow::Create(DisplayWindowHost* windowHost)
|
||||
|
|
@ -47,4 +52,9 @@ void DisplayWindow::ExitLoop()
|
|||
throw std::runtime_error("DisplayWindow::ExitLoop not implemented");
|
||||
}
|
||||
|
||||
Size DisplayWindow::GetScreenSize()
|
||||
{
|
||||
throw std::runtime_error("DisplayWindow::GetScreenSize not implemented");
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue