This commit is contained in:
EmsiaetKadosh
2025-01-14 19:51:08 +08:00
parent 2b8f8121f8
commit 4f455ca6ad
6 changed files with 103 additions and 29 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ inline BOOL NewProcess(const String& cmdline) noexcept {
return CreateProcessW(nullptr, const_cast<wchar*>(cmdline.c_str()), nullptr, nullptr, 0, 0, nullptr, nullptr, &si, &pi);
}
inline HRESULT RemoveDefaultCaption(const HWND hWnd, const MARGINS* p) noexcept { return DwmExtendFrameIntoClientArea(hWnd, p); }
inline HRESULT RemoveDefaultCaption(HWND const hWnd, const MARGINS* p) noexcept { return DwmExtendFrameIntoClientArea(hWnd, p); }
inline void ShowConsoleIO() noexcept {
AllocConsole();