I have a makefile project that creates and links a DLL using the cl.exe command line compiler, which is included in the VC ++ Express tool (free). Now I want to convert this makefile project to a Visual Studio project.
The DLL is actually not C ++; it is all written in C.
The DLL exports a small number of characters, functions called by other programs that reference the DLL. I believe that in order to create this DLL, I need to include a /EXPORT:Foolink command statement for each exported symbol.
How do I do the same in Visual Studio 2008? How do I specify linker options to export a specific, small set of functions from a DLL?
source
share