Skip to content

Initialization

alexmitev81 edited this page Feb 27, 2017 · 4 revisions

MULTIUSER_INIT

You have to insert this macro in your .onInit function for the plugin to work. It is responsible for the proper initialization of the plugin in the installer.

Usage:

Function .onInit
    ...
    !insertmacro MULTIUSER_INIT	  
FunctionEnd

MULTIUSER_UNINIT

You have to insert this macro in your un.onInit function for the plugin to work. It is responsible for the proper initialization of the plugin in the uninstaller.

Usage:

Function un.onInit
	...
	!insertmacro MULTIUSER_UNINIT	  
FunctionEnd
Clone this wiki locally