Reputation: 1762
I am having some dll and some libraries which must be included in my Visual Studio application.
According to you, a part of the path C:\Windows where do I have include them to be recognised by the app, and meantime, by the dll?
Upvotes: 2
Views: 48
Reputation: 5369
Not good to place something into c:\Windows unless you really have to (drivers and other low-level staff).
P.S. And yeah, don't forget to use Win API functions to resolve special directory names (instead of hardcoded c:\windows etc)
Upvotes: 4