DLL from static libs ?
-
I'm inheriting a project which has a lot of static libraries (hardware control). Can I just create a dll (using VS wizard) and link the static libaries into one dll with no troubles? Bit of a newbie in this arena....I haven't worked with DLLs much.
There are only 10 types of people in this world....those that understand binary, and those that do not.
-
I'm inheriting a project which has a lot of static libraries (hardware control). Can I just create a dll (using VS wizard) and link the static libaries into one dll with no troubles? Bit of a newbie in this arena....I haven't worked with DLLs much.
There are only 10 types of people in this world....those that understand binary, and those that do not.
-
Are you trying to write wrapper functions for all the functions in the static libraries or do you just want to use the functions in the static libraries in the DLL? If you can make it a bit more clearer, I will be able to help you out...
No wrapper necessary. I'd like to just them as they are...just in the DLL. The static libs are fine as they are...I'd just like to have open one time, in one instance in memory instead of building them in to every test program I'm going to write which uses them. Appreciate your advice.
There are only 10 types of people in this world....those that understand binary, and those that do not.