Install_Exit (Compact 2013)

4/15/2013

A custom installer dll should export the Install_Exit function. This function will be called after an application is installed. This function can be used for custom operations such as handling errors that occurred during installation or launching of the application.

Syntax

codeINSTALL_EXIT Install_Exit(
  HWND hwndParent,
  LPCTSTR pszInstallDir,
  WORD cFailedDirs,
  WORD cFailedFiles,
  WORD cFailedRegKeys,
  WORD cFailedRegVals,
  WORD cFailedShortcuts
);

Parameters

  • hwndParent
    [in] Specifies a handle to the parent window. If the installation is launched from a client that does not have a parent window, the handle will be NULL. If the handle is NULL, do not display any UI.
  • pszInstallDir
    [in] Reference to a null-terminated string that contains the name of the final installation directory.
  • cFailedDirs
    [in] Specifies the number of directories that failed to be created.
  • cFailedFiles
    [in] Specifies the number of files that failed to be created.
  • cFailedRegKeys
    [in] Specifies the number of registry keys that failed to be created.
  • cFailedRegVals
    [in] Specifies the number of registry values that failed to be created.
  • cFailedShortcuts
    [in] Specifies the number of shortcuts that failed to be created.

Return Value

  • codeINSTALL_EXIT_DONE
    The application installation is exited successfully.
  • codeINSTALL_EXIT_UNINSTALL
    The application is uninstalled before exiting the installation.

Remarks

This function is called during installation once the installation process has been completed.

Requirements

Header

ce_setup.h

See Also

Reference

CAB Wizard
codeINSTALL_EXIT
Install_Init