Started the work for reimplementing rows.
This commit is contained in:
parent
8ea320220a
commit
ccb68b6fc8
|
@ -57,6 +57,7 @@ struct table {
|
||||||
intptr_t headerHeight;
|
intptr_t headerHeight;
|
||||||
intptr_t hscrollpos;
|
intptr_t hscrollpos;
|
||||||
intptr_t hpagesize;
|
intptr_t hpagesize;
|
||||||
|
intptr_t count;
|
||||||
};
|
};
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
@ -81,7 +82,7 @@ static const handlerfunc handlers[] = {
|
||||||
|
|
||||||
static void initDummyTableStuff(struct table *t)
|
static void initDummyTableStuff(struct table *t)
|
||||||
{
|
{
|
||||||
// nothing yet...
|
t->count = 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
static LRESULT CALLBACK tableWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
static LRESULT CALLBACK tableWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
|
|
Loading…
Reference in New Issue