diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-03 22:04:05 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-03 22:04:05 +0200 |
commit | ebac89ec6ae0aca646420320c019a0e1cbb79d7c (patch) | |
tree | 2506816a2280bcfb5b6a203cba35caa1dca89b71 /c/win.cpp | |
parent | 04daecdd21e86e7556a9462380096530228cd6ca (diff) | |
download | EpisodeBrowser-ebac89ec6ae0aca646420320c019a0e1cbb79d7c.tar.gz |
Use Pascal case for all functions.
Diffstat (limited to 'c/win.cpp')
-rw-r--r-- | c/win.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,9 +87,9 @@ int EBMessageBox(const wchar_t* const wszText, const wchar_t* const wszCaption, return 0; }; - HHOOK hHook = require(SetWindowsHookEx(WH_CBT, proc, (HINSTANCE)NULL, GetCurrentThreadId())); + HHOOK hHook = Require(SetWindowsHookEx(WH_CBT, proc, (HINSTANCE)NULL, GetCurrentThreadId())); int r = MessageBox(g_hWnd, wszText, wszCaption, uType); - require(UnhookWindowsHookEx(hHook)); + Require(UnhookWindowsHookEx(hHook)); return r; } |