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.
This commit is contained in:
Jake Drahos 2023-01-26 10:52:10 -06:00
parent 9e288ffd57
commit 29077fd9cd
1 changed files with 1 additions and 1 deletions

View File

@ -366,7 +366,7 @@ private:
import core.sys.windows.objbase;
import core.sys.windows.objidl;
pragma(lib, "Ole32");
pragma(lib, "ole32");
alias GUID KNOWNFOLDERID;