From 547cbe578dcdb5aa5cfdac1cdb327f92bad21219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Tue, 26 Jul 2022 19:27:35 +0200 Subject: Remove ANSI compatibility. Even though it is a fun challange in many ways, I think that, realistically, it is probably not worth the complexity. The Prolog backend isn't ANSI-compatible either. --- c/common.h | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) (limited to 'c/common.h') diff --git a/c/common.h b/c/common.h index 3f27ba4..9efaf59 100644 --- a/c/common.h +++ b/c/common.h @@ -11,51 +11,25 @@ #define WA "A" #endif -template std::basic_string BstrFromSz(const char* sz, int iCp = CP_UTF8); -int EBMessageBox(const TCHAR* tszText, const TCHAR* tszCaption, unsigned uType); - -/* Conditionally choose between two values. */ -template -constexpr std::enable_if_t choose(X x, Y) { return x; } -template -constexpr std::enable_if_t choose(X, Y y) { return y; } - -/* Conditionally choose between ANSI and wide string literal. */ -#define AWTEXT(t, s) choose>(L"" s, s) - -/* Conditionally choose between ANSI and wide Windows API function. */ -#define AWFUN(t, f) choose>(f##W, f##A) +std::wstring WstrFromSz(const char* sz, int iCp = CP_UTF8); +int EBMessageBox(const wchar_t* wszText, const wchar_t* wszCaption, unsigned uType); struct Win32Error : public std::exception { Win32Error(); Win32Error(DWORD dwErr); ~Win32Error(); - template const T* what() const noexcept; + const char* what() const noexcept; + const wchar_t* WhatW() const noexcept; DWORD dwErr; private: char* m_szMsg = NULL; wchar_t* m_wszMsg = NULL; }; -template -const T* Win32Error::what() const noexcept -{ - TCHAR* tszMsg = choose>(m_wszMsg, m_szMsg); - if (!tszMsg) - AWFUN(T, FormatMessage)( - FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_IGNORE_INSERTS, - NULL, - dwErr, - MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), - (TCHAR*)&tszMsg, - 0, NULL); - return tszMsg; -} - struct Library { - Library(const TCHAR* tszLibrary); + Library(const wchar_t* wszLibrary); ~Library(); template T* GetProcAddress(const char* szProc); private: @@ -98,8 +72,7 @@ template inline T prefer(const T x) { if (!x) { - EBMessageBox(Win32Error().what(), - TEXT("System Error"), MB_ICONWARNING); + EBMessageBox(Win32Error().WhatW(), L"System Error", MB_ICONWARNING); return (T)NULL; } return x; -- cgit v1.2.3