From 0d5736538a98b2c4001c45d073affc6bc0d772e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Wed, 20 Jul 2022 20:15:22 +0200 Subject: Use GetLastError() as default for Win32Error. --- c/common.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'c/common.h') diff --git a/c/common.h b/c/common.h index d84590d..24c98c8 100644 --- a/c/common.h +++ b/c/common.h @@ -15,6 +15,7 @@ int EBMessageBox(const TCHAR* tszText, const TCHAR* tszCaption, unsigned uType); struct Win32Error : public std::exception { + Win32Error(); Win32Error(DWORD dwErr); ~Win32Error(); template const T* what() const noexcept; @@ -57,19 +58,19 @@ std::optional maybe_make(U... xs) template inline auto require(T... xs) { - auto r = F(xs...); - if (!r) throw Win32Error(GetLastError()); - return r; + if (auto r = F(xs...)) return r; + else throw Win32Error(); } /* Call Windows API function, showing a warning on NULL. */ template inline auto prefer(T... xs) { - try { - return require(xs...); - } catch (Win32Error& e) { - EBMessageBox(e.what(), TEXT("System Error"), MB_ICONWARNING); + if (auto r = F(xs...)) + return r; + else { + EBMessageBox(Win32Error().what(), + TEXT("System Error"), MB_ICONWARNING); return (decltype(F(std::declval()...)))NULL; } } -- cgit v1.2.3