Gourav Sharma
Gourav Sharma

Reputation: 1

can I load a dll which is statically linked with a library

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

Answers (1)

vog
vog

Reputation: 25607

Yes, it is certainly possible to dynamically link curl_demo.dll from Hello1.

Upvotes: 1

Related Questions