mirror of https://github.com/buggins/dlangui.git
Replaced pragma with dub directive
Deleted pragma(lib) and moved ole32 to libs-windows in dub.json
This commit is contained in:
parent
29077fd9cd
commit
964ed118f5
2
dub.json
2
dub.json
|
@ -19,6 +19,8 @@
|
||||||
|
|
||||||
"libs-linux": ["z"],
|
"libs-linux": ["z"],
|
||||||
|
|
||||||
|
"libs-windows": ["ole32"],
|
||||||
|
|
||||||
"stringImportPaths": [
|
"stringImportPaths": [
|
||||||
"views"
|
"views"
|
||||||
],
|
],
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue