Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
676 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. //
  6. // File: unknwn.idl
  7. //
  8. // Contents: IUnknown interface definition
  9. //
  10. // History: 06-08-93 ShannonC Updated to OLE 2 release
  11. //
  12. //--------------------------------------------------------------------------
  13. [
  14. local,
  15. object,
  16. uuid(00000000-0000-0000-C000-000000000046),
  17. pointer_default(unique)
  18. ]
  19. interface IUnknown
  20. {
  21. import "wtypes.idl";
  22. typedef [unique] IUnknown *LPUNKNOWN;
  23. HRESULT QueryInterface(
  24. [in] REFIID riid,
  25. [out] void **ppvObject);
  26. ULONG AddRef();
  27. ULONG Release();
  28. }