This topic has not yet been rated - Rate this topic

FExecuteInAppDomainCallback Function Pointer

Points to a function that is called by the common language runtime (CLR) to execute managed code.


typedef HRESULT (__stdcall *FExecuteInAppDomainCallback) (
        [in] void  *cookie
);

Parameters

cookie

[in] A pointer to opaque caller-allocated memory that contains the managed code to be executed.

The allocation and lifetime of this memory are controlled by the caller (that is, the CLR). This is not CLR managed-heap memory.

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: MSCorEE.idl

Library: MSCorWks.dll

.NET Framework Version: 2.0

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.