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.

This commit is contained in:
Pietro Gagliardi 2014-11-30 21:11:12 -05:00
parent c67be58377
commit c41b9b16ff
1 changed files with 1 additions and 1 deletions

View File

@ -94,11 +94,11 @@ struct table {
}; };
#include "util.h" #include "util.h"
#include "api.h"
#include "hscroll.h" #include "hscroll.h"
#include "vscroll.h" #include "vscroll.h"
#include "selection.h" #include "selection.h"
#include "draw.h" #include "draw.h"
#include "api.h"
// TODO create a system where each of the above modules provide their own window procedures // 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) static LRESULT CALLBACK tableWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)