Код: Выделить всё
if (this->m_hWnd = CreateWindowEx(
0,
this->m_szClassName.c_str(),
this->m_szAppName.c_str(),
WS_DLGFRAME | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZE,
(GetSystemMetrics(SM_CXSCREEN) - _windowRC.right) / 2,
(GetSystemMetrics(SM_CXSCREEN) - _windowRC.bottom) / 2,
_windowRC.right, _windowRC.bottom, nullptr, nullptr, nullptr, this
);/*';' underlined in red*/ !this->m_hWnd)
throw runtime_error("Error, can't create main window!"s);
Подробнее здесь: https://stackoverflow.com/questions/784 ... s-the-code