64 bit dll register

1

I have converted 32 bit COM dll into 64 bit dll by using x64 build.I tried to register this 64 bit dll into 64 bit windows 2008 server uisng C:windows\system32 regsrv32.exe .But i'm getting an error message "Dllregister server failed with error code 0x80029c4a". How can i register this dll in 64 bit OS.

windows
dll
com
64-bit
regsvr32
asked on Stack Overflow May 19, 2011 by user443088 • edited May 19, 2011 by Cody Gray

1 Answer

2

That error code is TYPE_E_CANTLOADLIBRARY which likely means there was a call to LoadTypeLib() somewhere inside DllRegisterServer() and that call failed for whatever reason. A likely reason is the library was not added into the DLL resources.

answered on Stack Overflow May 19, 2011 by sharptooth

User contributions licensed under CC BY-SA 3.0