InstallWizardFinish

From TrillWiki

Jump to: navigation, search

The installWizardFinish notification is sent to the main plugin function when it should dispose of any install wizard window and resources.

Compatibility: 2.0 and higher

Contents

Syntax

plugin_main("installWizardFinish",install_wizard_t *);

Note that all Trillian functions and notifications begin with a lower-case letter, despite the Wiki requirement that all pages start with a capital letter.

Parameters

InstallWizardFinish utilitizes the install_wizard_t structure.

struct install_wizard_t
{
    unsigned int                struct_size;

    int                         show; //1 shows, 0 hides
    int                         flags;

    HWND                        hwnd;

    int                         x;
    int                         y;

    /* 3.0
     */
    char                        name[128];
    char                        description[1024];
};


Return Value

Must return 0.

Remarks

None.


Personal tools