summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-11-30 21:11:12 -0500
committerPietro Gagliardi <[email protected]>2014-11-30 21:11:12 -0500
commitc41b9b16fffb000700e64c0d652e2db58242d98d (patch)
tree00e9d9999284d295d0cce21924237fdfde325d35
parentc67be58377d2489bc165c1542398d4369f2d494d (diff)
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.
-rw-r--r--wintable/main.c2
1 files changed, 1 insertions, 1 deletions
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)