Replaced pragma with dub directive

Deleted pragma(lib) and moved ole32 to libs-windows in dub.json
This commit is contained in:
Jake Drahos 2023-01-26 14:19:04 -06:00
parent 29077fd9cd
commit 964ed118f5
2 changed files with 2 additions and 2 deletions

View File

@ -19,6 +19,8 @@
"libs-linux": ["z"], "libs-linux": ["z"],
"libs-windows": ["ole32"],
"stringImportPaths": [ "stringImportPaths": [
"views" "views"
], ],

View File

@ -366,8 +366,6 @@ private:
import core.sys.windows.objbase; import core.sys.windows.objbase;
import core.sys.windows.objidl; import core.sys.windows.objidl;
pragma(lib, "ole32");
alias GUID KNOWNFOLDERID; alias GUID KNOWNFOLDERID;
extern(Windows) @nogc @system HRESULT _dummy_SHGetKnownFolderPath(const(KNOWNFOLDERID)* rfid, DWORD dwFlags, HANDLE hToken, wchar** ppszPath) nothrow; extern(Windows) @nogc @system HRESULT _dummy_SHGetKnownFolderPath(const(KNOWNFOLDERID)* rfid, DWORD dwFlags, HANDLE hToken, wchar** ppszPath) nothrow;