mscoree: Define interface IManagedObject.

oldstable
Alistair Leslie-Hughes 2011-06-28 22:34:03 +10:00 committed by Alexandre Julliard
parent b07408cf82
commit 36b0323ceb
1 changed files with 14 additions and 0 deletions

View File

@ -224,3 +224,17 @@ interface ICLRRuntimeHost : IUnknown
[in] LPCWSTR pwzArgument,
[out] DWORD *pReturnValue);
}
[
uuid(C3FCC19E-A970-11d2-8B5A-00A0C9B7C9C4),
local,
object
]
interface IManagedObject : IUnknown
{
HRESULT GetSerializedBuffer([out] BSTR *pBSTR);
HRESULT GetObjectIdentity([out] BSTR *pBSTRGUID,
[out] int *AppDomainID,
[out] int *pCCW);
}