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.

31 lines
631 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994.
  5. //
  6. // File: khunkex.h
  7. //
  8. // Contents: Extended IUnknown Interface Header File
  9. //
  10. // Functions:
  11. //
  12. // History: 13-Oct-94 Garry Lenz Created
  13. //
  14. //--------------------------------------------------------------------------
  15. #ifndef _IUNKNOWNEX_H_
  16. #define _IUNKNOWNEX_H_
  17. #include <Windows.h>
  18. interface IUnknownEx : IUnknown
  19. {
  20. public:
  21. STDMETHOD (QueryContainedInterface)
  22. (
  23. REFIID riid,
  24. LPVOID* ppvObj
  25. ) = 0;
  26. };
  27. #endif // _IUNKNOWNEX_H_