diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-06 23:43:37 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-06 23:43:37 +0200 |
commit | 4929e13de62e1b806ccc5dde604ceee15cdeffcb (patch) | |
tree | 9a7e213bfcec1dc5cd0330dfb84e75adfd372a4a /c | |
parent | 9ce6c7dadf47737063058adba50e7085faa9fe4a (diff) | |
download | EpisodeBrowser-4929e13de62e1b806ccc5dde604ceee15cdeffcb.tar.gz |
Add const.
Diffstat (limited to 'c')
-rw-r--r-- | c/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -223,7 +223,7 @@ static LRESULT CALLBACK CBTProc(const int nCode, const WPARAM wParam, const LPAR return 0; } -LRESULT CALLBACK WndProc(const HWND hWnd, const UINT uMsg, const WPARAM wParam, LPARAM lParam) +LRESULT CALLBACK WndProc(const HWND hWnd, const UINT uMsg, const WPARAM wParam, const LPARAM lParam) { switch (uMsg) { case WM_CREATE: |