diff options
Diffstat (limited to 'c/listview.h')
-rw-r--r-- | c/listview.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/c/listview.h b/c/listview.h index 478819f..858b156 100644 --- a/c/listview.h +++ b/c/listview.h @@ -2,12 +2,14 @@ #define LISTVIEW_H #include <windows.h> +#include <commctrl.h> struct ListView { HWND hWnd; ListView(HWND hWndParent, HMENU hMenu, DWORD dwStyle); + bool FindNextItem(LVITEM* lvi, LPARAM lParam); int Height(int bHeader = -1); virtual void ResizeColumns(int w); virtual void UpdateTheme(BOOL bThemeActive); |