Install_Exit (Windows CE 5.0)

Send Feedback

This function is called after installation completes. It is used for operations such as handling errors that occurred during installation or launching the application.

Install_Exit is developer-written, using the specified prototype for compatibility.

codeINSTALL_EXIT Install_Exit(HWNDhwndParent,LPCTSTRpszInstallDir,WORDcFailedDirs,WORDcFailedFiles,WORDcFailedRegKeys,WORDcFailedRegVals,WORDcFailedShortcuts);

Parameters

  • hwndParent
    [in] Handle to the parent window.
  • pszInstallDir
    [in] Null-terminated string with the name of the final install directory.
  • cFailedDirs
    [in] Count of directories that failed to be created.
  • cFailedFiles
    [in] Count of files that failed to be created.
  • cFailedRegKeys
    [in] Count of registry keys that failed to be created.
  • cFailedRegVals
    [in] Count of registry values that failed to be created.
  • cFailedShortcuts
    [in] Count of shortcuts that failed to be created.

Return Values

Value Description
codeINSTALL_EXIT_DONE Exit. Installation successful.
codeINSTALL_EXIT_UNINSTALL Uninstall application before exiting.

Remarks

The Install_Exit function is part of the application's setup and uninstall program, Setup.dll.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Ce_setup.h.
Link Library: Coredll.lib.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.