|
unit MenuWizardReg;
interface
uses SysUtils, Windows, Controls, ToolsApi, MenuWizard;
//
// the procedure Register is CaseSensitive!
//
procedure Register;
implementation
procedure Register;
begin
//
// Create and register
our Sameple Wizard with the IDE
//
RegisterPackageWizard(TSampleMenuWizard.Create
as IOTAWizard);
end;
end. |