34 lines
676 B
Plaintext
34 lines
676 B
Plaintext
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|
//
|
|
// File: unknwn.idl
|
|
//
|
|
// Contents: IUnknown interface definition
|
|
//
|
|
// History: 06-08-93 ShannonC Updated to OLE 2 release
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
[
|
|
local,
|
|
object,
|
|
uuid(00000000-0000-0000-C000-000000000046),
|
|
pointer_default(unique)
|
|
]
|
|
|
|
interface IUnknown
|
|
{
|
|
import "wtypes.idl";
|
|
|
|
typedef [unique] IUnknown *LPUNKNOWN;
|
|
|
|
HRESULT QueryInterface(
|
|
[in] REFIID riid,
|
|
[out] void **ppvObject);
|
|
|
|
ULONG AddRef();
|
|
|
|
ULONG Release();
|
|
}
|