Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

using dll problem

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
i have an dll in which the functions are declarated
with __export and i'm asking is there a way to use
them with VC+ 6.0.
VC+ 6.0 obviously doesn't recognize the words
__export and __import, and
when i describe the functios in my header as
__declspec(dllimport), and i include the extern "C" clause
i make an lib file from the dll, using lib.exe /def:mtel.dll
and build him with the project
it compiles them successfully, but the linker
say :
error LNK2001: unresolved external symbol __imp__MTELConnect
i wander if there is a way to see the function definitions
in the dll.file, creating def file with lib.exe
or something like this.

10x for the help
 
If you have .NET installed, the application DependencyWalker from .Net binn directory describes every prototype of function exported from a DLL.

HTH, s-)

Blessed is he who in the name of justice and goodwill, sheperds the weak through the valley of darkness...
 
10x, i don't know what .net is, but i'll learn,
someother suggestions i receive in other forums
that this is a 16 bit dll.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top