summaryrefslogtreecommitdiff
path: root/wintable/new/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'wintable/new/main.c')
-rw-r--r--wintable/new/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wintable/new/main.c b/wintable/new/main.c
index d296fc3..8e15f0f 100644
--- a/wintable/new/main.c
+++ b/wintable/new/main.c
@@ -50,6 +50,8 @@ struct table {
HWND hwnd;
HWND header;
HFONT font;
+ intptr_t nColumns;
+ int *columnTypes;
};
#include "util.h"
@@ -72,9 +74,7 @@ static const handlerfunc handlers[] = {
static void initDummyTableStuff(struct table *t)
{
- headerAddColumn(t, L"Column 1");
- headerAddColumn(t, L"Column 2");
- headerAddColumn(t, L"Column 3");
+ // nothing yet...
}
static LRESULT CALLBACK tableWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)