mirror of https://github.com/tongzx/nt5src
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
31 lines
631 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1994.
|
|
//
|
|
// File: khunkex.h
|
|
//
|
|
// Contents: Extended IUnknown Interface Header File
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 13-Oct-94 Garry Lenz Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _IUNKNOWNEX_H_
|
|
#define _IUNKNOWNEX_H_
|
|
|
|
#include <Windows.h>
|
|
|
|
interface IUnknownEx : IUnknown
|
|
{
|
|
public:
|
|
STDMETHOD (QueryContainedInterface)
|
|
(
|
|
REFIID riid,
|
|
LPVOID* ppvObj
|
|
) = 0;
|
|
};
|
|
|
|
#endif // _IUNKNOWNEX_H_
|