From 29077fd9cd05669165d72599b19133e3c149390d Mon Sep 17 00:00:00 2001 From: Jake Drahos Date: Thu, 26 Jan 2023 10:52:10 -0600 Subject: [PATCH] Fixed ole32.dll pragrma for cross-compilation Pragma specified Ole32.dll, which broke compilation on case-sensitive file systems, ie. when cross-compiling with ldc on Linux. --- src/dlangui/core/files.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dlangui/core/files.d b/src/dlangui/core/files.d index c90e0ae2..37eb74f8 100644 --- a/src/dlangui/core/files.d +++ b/src/dlangui/core/files.d @@ -366,7 +366,7 @@ private: import core.sys.windows.objbase; import core.sys.windows.objidl; - pragma(lib, "Ole32"); + pragma(lib, "ole32"); alias GUID KNOWNFOLDERID;