blob: e82aabed609971ff8d15d8c3a3b008453bce2b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Tony Theodore <tonyt@logyst.com>
Date: Mon, 26 Feb 2018 22:45:37 +1100
Subject: [PATCH 1/1] add missing include
diff --git a/src/utils/SecureRNG.cpp b/src/utils/SecureRNG.cpp
index 1111111..2222222 100644
--- a/src/utils/SecureRNG.cpp
+++ b/src/utils/SecureRNG.cpp
@@ -37,6 +37,7 @@
#include <limits.h>
#ifdef Q_OS_WIN
+#include <windows.h>
#include <wincrypt.h>
#endif
|