| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
//+-------------------------------------------------------------------
//
// File: ctxtcall.idl
//
// Contents: Public Context interfaces
//
// History: 04-Dec-97 Created
//
//--------------------------------------------------------------------
cpp_quote("//+-----------------------------------------------------------------")
cpp_quote("//")
cpp_quote("// Microsoft Windows")
cpp_quote("// Copyright (c) Microsoft Corporation. All rights reserved.")
cpp_quote("//")
cpp_quote("//------------------------------------------------------------------")
import "wtypes.idl";
import "objidl.idl";
import "unknwn.idl";
// ComCallData used with IContextCallback::ContextCallback
typedef struct tagComCallData {
DWORD dwDispid;
DWORD dwReserved;
void *pUserDefined;
} ComCallData;
// IContextCallback interface
[
local,
object,
uuid(000001da-0000-0000-C000-000000000046),
pointer_default(unique)
]
interface IContextCallback : IUnknown
{
typedef [ref] HRESULT __stdcall (*PFNCONTEXTCALL)(ComCallData* pParam);
HRESULT ContextCallback([in] PFNCONTEXTCALL pfnCallback,
[in] ComCallData *pParam,
[in] REFIID riid,
[in] int iMethod,
[in] IUnknown *pUnk);
}