Can a dll use another dll ?

Nov 11, 2020 at 6:16pm
Hello again..
I have write few dlls for my code.. and now what remains from my entire code is the main.c, menus.c, resource.h and resource.rc

So my question is, if I want menus.c to be a dll for my main.c file, but the menus.c it self already uses other dlls, it is that possible ??
Nov 11, 2020 at 6:19pm
Or better ask if can use function from other dll ?
Nov 11, 2020 at 7:16pm
yes, you can. You just import into it same as you would use it in a main program.
Nov 12, 2020 at 9:23am
Okay... thank you jonnin, going fast to work :D
Last edited on Nov 12, 2020 at 9:23am
Nov 12, 2020 at 10:45am
Another question.. In my new dll project I have to link the library as well from the other dll ?
Last edited on Nov 12, 2020 at 10:46am
Nov 12, 2020 at 11:32am
Okay I got it.. I have to link as I do with a normal .c file. In fact I have to repeat all the operations and threat that dll as I do with a source file.
Thanks everyone.. I solved my problem and works just fine.
Topic archived. No new replies allowed.