#ifndef LISTVIEW_H #define LISTVIEW_H #include struct ListView { ListView(HMENU, DWORD); int Height(int = -1); HWND HWnd(void) const; virtual void UpdateTheme(BOOL); virtual LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); protected: int m_bHeader = 1; WNDPROC m_prevProc; HWND m_hWnd; }; #endif