uIMainForm.pas 446 B

1234567891011121314151617181920212223
  1. unit uIMainForm;
  2. interface
  3. uses
  4. Forms;
  5. type
  6. IMainForm = interface(IInterface)
  7. ['{69DDA539-DF48-441A-9149-229BF17C8E78}']
  8. procedure closePluginQuery(const pvForm: IInterface; vCanClose: Boolean);
  9. stdcall;
  10. function removePlugin(const pvInstanceID: PAnsiChar): boolean; stdcall;
  11. procedure showPluginAsMDI(const pvPlugin:IInterface);stdcall;
  12. function GetMainApplication:TApplication;
  13. end;
  14. implementation
  15. end.