summaryrefslogtreecommitdiffstats
path: root/private/ole32/ih/hkunkex.h
blob: 6e989c9f46535a49d0753c086968b43efbef77f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//+-------------------------------------------------------------------------
//
//  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_