Started the work for reimplementing rows.

This commit is contained in:
Pietro Gagliardi 2014-12-11 18:58:37 -05:00
parent 8ea320220a
commit ccb68b6fc8
1 changed files with 2 additions and 1 deletions

View File

@ -57,6 +57,7 @@ struct table {
intptr_t headerHeight;
intptr_t hscrollpos;
intptr_t hpagesize;
intptr_t count;
};
#include "util.h"
@ -81,7 +82,7 @@ static const handlerfunc handlers[] = {
static void initDummyTableStuff(struct table *t)
{
// nothing yet...
t->count = 100;
}
static LRESULT CALLBACK tableWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)