Can a dll use another dll ?

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 ??
Or better ask if can use function from other dll ?
yes, you can. You just import into it same as you would use it in a main program.
Okay... thank you jonnin, going fast to work :D
Last edited on
Another question.. In my new dll project I have to link the library as well from the other dll ?
Last edited on
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.