Module: wine Branch: master Commit: 36b0323cebbd7cc0b99c8704f7d5776786d9c5ff URL: http://source.winehq.org/git/wine.git/?a=commit;h=36b0323cebbd7cc0b99c8704f7...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Tue Jun 28 22:34:03 2011 +1000
mscoree: Define interface IManagedObject.
---
include/mscoree.idl | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/include/mscoree.idl b/include/mscoree.idl index f8698cb..4160264 100644 --- a/include/mscoree.idl +++ b/include/mscoree.idl @@ -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); +}