uIMainForm.pas 386 B

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