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
This commit is contained in:
parent
15cedc10f5
commit
c189fd76d6
1 changed files with 2 additions and 2 deletions
|
@ -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)).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue