title explaines it all; how do i refrence my dlls and functions in msvc++.
title explaines it all; how do i refrence my dlls and functions in msvc++.
When you created the ASM DLL, you would have an import library (.lib) for it, so that you could link. You need to create a C header file with the prototypes of all the functions in your DLL....
how do i link them :confused: :confused: :confused: :confused: :confused: :confused: :D
In the linker options you can specify the libraries. You must add the import library (.lib) of your ASM DLLs there.