aboutsummaryrefslogtreecommitdiff
path: root/c/listview.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/listview.h')
-rw-r--r--c/listview.h8
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;