Archive: Registering DLL issue


Registering DLL issue
Hello,

I use NSIS for creating an installation package for my game software. A user reported he receives an error when trying to use the program, "library not registered". I have some DLLs used by the software that are not registered into the Windows Registry. Is this the cause of this error message? This does not affect most users (or myself).

If this is the problem, what text should I add to my NSIS script to register the DLLs? I tried adding text to register the DLLs, which is:

RegDLL "$INSTDIR\UNZDLL.DLL"
RegDLL "$INSTDIR\ZIPDLL.DLL"

However, this results in the error, "could not find symbol: DllRegisterServer" when the NSIS package is unzipping.

Any help you can provide is appreciated. Please feel free to email me as well as post here (email is especially appreciated).

Sincerely,
Andrew


This means that the library does not have to be registered.