Reputation: 1
I am working on a c++ project but I am getting some problem. I have made a dll "curl_demo.dll" which is statically linked with "libcurl".Now i want to create a project "Hello1" which uses a function of "curl_demo.dll".So I want to know that can I link "curl_demo.dll" dynamically to the "Hello1" project.
Upvotes: 0
Views: 95
Reputation: 25607
Yes, it is certainly possible to dynamically link curl_demo.dll
from Hello1
.
Upvotes: 1