activation.idl 458 B

123456789101112131415161718
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. import "inspectable.idl";
  7. [
  8. object,
  9. uuid(00000035-0000-0000-c000-000000000046),
  10. pointer_default(unique)
  11. ]
  12. interface IActivationFactory : IInspectable
  13. {
  14. HRESULT ActivateInstance(
  15. [out] IInspectable **instance);
  16. }