InstallWizardFinishRequest
From TrillWiki
The installWizardFinishRequest notification is sent to the main plugin function to check if it is alright to finish out the install wizard. This will be sent before installWizardFinish.
Compatibility: 2.0 and higher
Contents |
Syntax
plugin_main("installWizardFinishRequest",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
InstallWizardFinishRequest 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
1 if all values have been filled out (or otherwise dealt with) and it is alright to move on to the next install wizard, otherwise, 0.
Remarks
None.
