Problem registering a dll in Win 95
-
Hello all, I am experiencing a problem with one of the dlls in my project. It's a COM dll (written in VC++, compiled under Win2000 as MinDependency) that uses winsock and wininet, and when I try to regsvr32 it under Windows 95, it gives a "LoadLibrary failed (error 485)" message. All other dlls register properly. Windows 98, NT, 2000 have no such problem. Here's what is specified in its Object/Library modules list: "wininet.lib Ws2_32.lib" The system with problems has IE5 installed, so I don't think it's wininet that causes problems. So, does anyone know how to solve it in the best way? Help is greatly appreciated. Volodya Orlenko, orlenko [at] hotmail [dot] com
-
Hello all, I am experiencing a problem with one of the dlls in my project. It's a COM dll (written in VC++, compiled under Win2000 as MinDependency) that uses winsock and wininet, and when I try to regsvr32 it under Windows 95, it gives a "LoadLibrary failed (error 485)" message. All other dlls register properly. Windows 98, NT, 2000 have no such problem. Here's what is specified in its Object/Library modules list: "wininet.lib Ws2_32.lib" The system with problems has IE5 installed, so I don't think it's wininet that causes problems. So, does anyone know how to solve it in the best way? Help is greatly appreciated. Volodya Orlenko, orlenko [at] hotmail [dot] com
ws2_32.lib links against Winsock library version 2.0, which is not shipped with W95 by default (Winsock baseline version for this OS is 1.1), so maybe this is what's causing the problem. Try installing the Windows Socket 2 Update for Windows 95. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo
-
ws2_32.lib links against Winsock library version 2.0, which is not shipped with W95 by default (Winsock baseline version for this OS is 1.1), so maybe this is what's causing the problem. Try installing the Windows Socket 2 Update for Windows 95. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo
Thanks a lot. I'll experiment with that tonight. Volodya Orlenko, orlenko [at] hotmail [dot] com