aboutsummaryrefslogtreecommitdiff
path: root/c/main.cpp
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-15 18:50:15 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-15 18:50:15 +0200
commite2dfdd7d07f54b464a4419dcf102662f1694d4b8 (patch)
tree7c8ef515847be96cdb12ddc21b8a3104fcce9428 /c/main.cpp
parent450770c00ae724fa8a3dc05fc86bf414cfa34e2f (diff)
downloadEpisodeBrowser-e2dfdd7d07f54b464a4419dcf102662f1694d4b8.tar.gz
Split defs.h into separate header files.
This is feasible now that the makedeps script exists to automatically manage build dependencies (see 6034fe2, d00f8b3).
Diffstat (limited to 'c/main.cpp')
-rw-r--r--c/main.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/c/main.cpp b/c/main.cpp
index 82c95ba..cbfb8f1 100644
--- a/c/main.cpp
+++ b/c/main.cpp
@@ -1,10 +1,15 @@
+#include <exception>
#include <windows.h>
#include <commctrl.h>
#include <uxtheme.h>
#include <SWI-Prolog.h>
#include "resource.h"
-#include "defs.h"
+#include "common.h"
+#include "datalistview.h"
+#include "episodelistview.h"
+#include "main.h"
+#include "pl.h"
DataListView *g_lpDlv = nullptr;
EpisodeListView *g_lpElv = nullptr;