You can detect the names of the exported functions. You can use DependencyWalker.
Or just Depends from the Windows SDK. It should be also here:
Windows XP Service Pack 2 Support Tools
But I don't get your idea with the Library Manager.
I have a .dll file supplied to me by a third party that I need to link against to resolve function references in my main program. I am using a version of Visual Studio Fortran and do not have the ability to load from the dll at run time using functiuons like LoadLibrary or GetProcAddress.
My understanding of the linking process in the VStudio 6 IDE is that it needs a .lib file to be able to incorporate the code within a .dll into the application. The 3rd party creator of the .dll did not give me the .lib file associated with it. Web searches told me that I can create a .def file that has the lines:
EXPORT
FunctionName1
FunctionName2
and then run the lib command:
lib /def:ok_dll.def /out:ok_dll.lib
I do this and it winds up creating a .lib file but I do not understnad how the existence of this fill will be in anyway connected to the .dll I know has the executable code in it?
When I specify the new .lib file as input to the linker in VStudio 6 I still get unresolved references...
Has anyone ever done this before? It seems like I am missing something very simple...thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You can detect the names of the exported functions. You can use DependencyWalker.
Or just Depends from the Windows SDK. It should be also here:
Windows XP Service Pack 2 Support Tools
But I don't get your idea with the Library Manager.
take a look:
How to create .lib file when you only have .dll and .h files
http://www.codeprojec
In
http://www.binary-sof
I've never used this tool - no need in C/C++.
Business Accounts
Answer for Membership
by: IbanUlovPosted on 2009-11-06 at 16:43:27ID: 25764383
1)Your best option is to ask for the .lib to the third party...
2)there is a thing you can do, you can create another library in c++ and load this dll(without .lib) with loadlibraryex and and export functions that call to the dll(without .lib). So you can link with the new library and access to the dll(without .lib) functions. Like an interface.