diff options
Diffstat (limited to 'c/listview.h')
-rw-r--r-- | c/listview.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c/listview.h b/c/listview.h index 41b7613..31ecc79 100644 --- a/c/listview.h +++ b/c/listview.h @@ -5,15 +5,15 @@ struct ListView { + HWND hWnd; + ListView(HWND hWndParent, HMENU hMenu, DWORD dwStyle); int Height(int bHeader = -1); - HWND Handle(void) const; virtual void UpdateTheme(BOOL bThemeActive); virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); protected: int m_bHeader = 1; WNDPROC m_prevProc; - HWND m_hWnd; HWND m_hWndParent; }; |