From 964ed118f5fdcc8e380b1232b83d5db64e82a9e8 Mon Sep 17 00:00:00 2001 From: Jake Drahos Date: Thu, 26 Jan 2023 14:19:04 -0600 Subject: [PATCH] Replaced pragma with dub directive Deleted pragma(lib) and moved ole32 to libs-windows in dub.json --- dub.json | 2 ++ src/dlangui/core/files.d | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index 40125eb5..31f66a2a 100644 --- a/dub.json +++ b/dub.json @@ -19,6 +19,8 @@ "libs-linux": ["z"], + "libs-windows": ["ole32"], + "stringImportPaths": [ "views" ], diff --git a/src/dlangui/core/files.d b/src/dlangui/core/files.d index 37eb74f8..069d4ff4 100644 --- a/src/dlangui/core/files.d +++ b/src/dlangui/core/files.d @@ -366,8 +366,6 @@ private: import core.sys.windows.objbase; import core.sys.windows.objidl; - pragma(lib, "ole32"); - alias GUID KNOWNFOLDERID; extern(Windows) @nogc @system HRESULT _dummy_SHGetKnownFolderPath(const(KNOWNFOLDERID)* rfid, DWORD dwFlags, HANDLE hToken, wchar** ppszPath) nothrow;