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:
parent
c67be58377
commit
c41b9b16ff
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue