diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-23 18:52:54 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-23 18:52:54 +0200 |
commit | 6248b63041d8d5e8ae5b15fe58ccde897b3cfb6e (patch) | |
tree | 7ffd1fffc879e4993cb27d4761feb8d8b7e9e84f /c/main.cpp | |
parent | e78f83c394bc1257d86ba8a9c8009f77cf32f94f (diff) | |
download | EpisodeBrowser-6248b63041d8d5e8ae5b15fe58ccde897b3cfb6e.tar.gz |
Refactor HTML retrieval and parsing.
Diffstat (limited to 'c/main.cpp')
-rw-r--r-- | c/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include <windows.h> #include <commctrl.h> #include <SWI-Prolog.h> +#include <libxml/xmlversion.h> #include "debug.h" #include "resource.h" @@ -86,6 +87,7 @@ static void UpdateTheme(); int WINAPI WinMain(const HINSTANCE hInstance, const HINSTANCE, char* const, const int nCmdShow) { setbuf(stdout, nullptr); + LIBXML_TEST_VERSION; /* Initialize Prolog. */ const char* argv[] = {"EpisodeBrowser", nullptr}; |