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

//+-------------------------------------------------------------------------
//
// 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();
}