From c189fd76d6cd04417699764dc3e77aa4d78bf1ac Mon Sep 17 00:00:00 2001 From: kichik Date: Wed, 16 Oct 2002 16:57:33 +0000 Subject: [PATCH] Now sets the error flag if DllRegisterServer fails (Bugs item #624176) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1432 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/generalpurpose.but | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/src/generalpurpose.but b/Docs/src/generalpurpose.but index bee49e5e..57c5d5b3 100644 --- a/Docs/src/generalpurpose.but +++ b/Docs/src/generalpurpose.but @@ -97,10 +97,10 @@ The error flag will be set if the file's attributes cannot be set (i.e. the file RegDLL \e{dllfile [entrypoint_name]} -Loads the specified DLL and calls DllRegisterServer (or entrypoint_name if specified). The error flag is set if an error occurs (i.e. it can't load the DLL, initialize OLE, or find the entry point). +Loads the specified DLL and calls DllRegisterServer (or entrypoint_name if specified). The error flag is set if an error occurs (i.e. it can't load the DLL, initialize OLE, find the entry point, or the function returned anything other than ERROR_SUCCESS (=0)). \H{unregdll} UnRegDLL UnRegDLL \e{dllfile} -Loads the specified DLL and calls DllUnregisterServer. The error flag is set if an error occurs (i.e. it can't load the DLL, initialize OLE, or find the entry point). +Loads the specified DLL and calls DllUnregisterServer. The error flag is set if an error occurs (i.e. it can't load the DLL, initialize OLE, find the entry point, or the function returned anything other than ERROR_SUCCESS (=0)).