From c41b9b16fffb000700e64c0d652e2db58242d98d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 30 Nov 2014 21:11:12 -0500 Subject: [PATCH] Moved the api.h include to the bottom of the include list so that when I move the public-facing API code (namely the WM_SETFONT handler) there we can use functions defined later. --- wintable/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wintable/main.c b/wintable/main.c index f186e06..8933879 100644 --- a/wintable/main.c +++ b/wintable/main.c @@ -94,11 +94,11 @@ struct table { }; #include "util.h" -#include "api.h" #include "hscroll.h" #include "vscroll.h" #include "selection.h" #include "draw.h" +#include "api.h" // TODO create a system where each of the above modules provide their own window procedures static LRESULT CALLBACK tableWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)