diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-17 02:30:34 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-17 02:30:34 +0200 |
commit | cd5ff302d1b03edb6fe81254c585e0e88c8e71ee (patch) | |
tree | bbf61c24e710f6ac07f2973ca31efdd1a2c9cbeb /c/listview.h | |
parent | e96b4db3fb46384f286e9297186b87648c7219c4 (diff) | |
download | EpisodeBrowser-cd5ff302d1b03edb6fe81254c585e0e88c8e71ee.tar.gz |
Name function arguments in headers.
This is obviously a lot less obtuse.
Diffstat (limited to 'c/listview.h')
-rw-r--r-- | c/listview.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/c/listview.h b/c/listview.h index e7cd68b..08511d1 100644 --- a/c/listview.h +++ b/c/listview.h @@ -5,11 +5,11 @@ struct ListView { - ListView(HWND, HMENU, DWORD); - int Height(int = -1); + ListView(HWND hWndParent, HMENU hMenu, DWORD dwStyle); + int Height(int bHeader = -1); HWND Handle(void) const; - virtual void UpdateTheme(BOOL); - virtual LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); + virtual void UpdateTheme(int bThemeActive); + virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); protected: int m_bHeader = 1; WNDPROC m_prevProc; |