aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-08-11 23:14:33 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-08-11 23:14:33 +0200
commit6bcd75ef3fb6786955938019c1eb8a6950e3063e (patch)
tree153a58f1d2de6370e4c3cd9679da62b86853a688
parentb159ee4f5caa71a85a9ebfa8ee9558a7fcbb8929 (diff)
downloadEpisodeBrowser-6bcd75ef3fb6786955938019c1eb8a6950e3063e.tar.gz
EBMessageBox: Take wstring_view instead of wchar_t*.
-rw-r--r--c/win.cpp4
-rw-r--r--c/win.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/c/win.cpp b/c/win.cpp
index 97e85a4..95ec9a7 100644
--- a/c/win.cpp
+++ b/c/win.cpp
@@ -70,11 +70,11 @@ static void CenterNextWindow(HWND hWnd)
}, nullptr, GetCurrentThreadId()));
}
-int EBMessageBox(const wchar_t* const wszText, const wchar_t* const wszCaption, const UINT uType)
+int EBMessageBox(const std::wstring_view text, const std::wstring_view caption, const UINT uType)
{
extern HWND g_hWnd;
CenterNextWindow(g_hWnd);
- return MessageBox(g_hWnd, wszText, wszCaption, uType);
+ return MessageBox(g_hWnd, text.data(), caption.data(), uType);
}
int GetRelativeCursorPos(const HWND hWnd, POINT* const pt) noexcept
diff --git a/c/win.h b/c/win.h
index 30d3cc5..e9a6839 100644
--- a/c/win.h
+++ b/c/win.h
@@ -7,7 +7,7 @@
/* Run given procedure at creation of next window. */
void WithNextWindow(void (*proc)(HWND));
/* Display message box centered in main window. */
-int EBMessageBox(const wchar_t* wszText, const wchar_t* wszCaption, UINT uType);
+int EBMessageBox(std::wstring_view text, std::wstring_view data, UINT uType);
/* Retrieve mouse position relative to given window's client area. */
int GetRelativeCursorPos(HWND hWnd, POINT* pt) noexcept;
/* Cached values from GetSystemMetrics. */