diff options
Diffstat (limited to 'table_windows.c')
| -rw-r--r-- | table_windows.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/table_windows.c b/table_windows.c index ea5b50c..dbbcde2 100644 --- a/table_windows.c +++ b/table_windows.c @@ -57,6 +57,12 @@ void setTableSubclass(HWND hwnd, void *data) xpanic("error subclassing Table to give it its own event handler", GetLastError()); } +// TODO rename all of these functions to start with gotable, and all the exported ones in Go too +void gotableSetRowCount(HWND hwnd, intptr_t count) +{ + SendMessageW(hwnd, tableSetRowCount, 0, (LPARAM) (&count)); +} + void tableAutosizeColumns(HWND hwnd, int nColumns) { int i; |
