Click here to Skip to main content
15,887,998 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have written a c++ cod for windows 7 32 bit machine using visual studio 2015 and build the solution. The exe file executed perfectly in my system, in which code is built but shows missing dll files. I have downloaded dll files but then came new error. "Missing procedure entry point in dll".
How to solve this??

What I have tried:

I have tried downloading new dlls
Posted
Updated 17-Feb-16 18:48pm

1 solution

Quote:
"Missing procedure entry point in dll".
How to solve this??


I guess, find the correct entry point - either get an updated copy of the documentation for the dll's from the supplier, or, use Microsoft's DumpBin program to see what they export - ie

DumpBin /EXPORTS xyz.dll

where xyz.dll is the dll you wish to use - there's no guarantee you'll get what you need though, going with good documentation is always best
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900