tags:

views:

41

answers:

2

I am using Visual Studio 2008 to create a dll. But cannot find the corresponding .lib file. Why? I need that file to put it into my tester.

+1  A: 

You will have to post some code or project settings. .lib files are only created when __declspec(dllexport) is used.

DeadMG
+1  A: 

Here is a link on how to build the .lib file in VS.

Romain Hippeau