Nov 11, 2020 at 6:16pm UTC
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 UTC
Or better ask if can use function from other dll ?
Nov 11, 2020 at 7:16pm UTC
yes, you can. You just import into it same as you would use it in a main program.
Nov 12, 2020 at 9:23am UTC
Okay... thank you jonnin , going fast to work :D
Last edited on Nov 12, 2020 at 9:23am UTC
Nov 12, 2020 at 10:45am UTC
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 UTC
Nov 12, 2020 at 11:32am UTC
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.