I'm on Qt in C++. I want to use library ADsGetObject https://learn.microsoft.com/en-us/windows/win32/api/adshlp/nf-adshlp-adsgetobject
At compilation, I have an error due to a link problem in the library.
In a .pro I have
INCLUDEPATH += $$PWD/Windows/include
LIBS +=-L"C:/Windows" -lwintrust -lActiveds
And the error message is : external symbol not resolved IID_IDirectoryObject
Has anyone ever had this problem?