| 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 : C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
/********************************************************
* *
* Copyright (C) Microsoft. All rights reserved. *
* *
********************************************************/
//-----------------------------------------------------------------------------
// File: cmdbas.idl
//
// Contents: OLE DB interface definition
//
// Comments:
//
//-----------------------------------------------------------------------------
cpp_quote("#include <winapifamily.h>")
#pragma region Desktop Family
cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)")
#include "idlmulti.h"
//
REMOTED_INTERFACE(0c733a63-2a1c-11ce-ade5-00aa0044773d)
interface ICommand : IUnknown {
[local]
HRESULT Cancel(
);
[call_as(Cancel)]
HRESULT RemoteCancel(
[out] IErrorInfo ** ppErrorInfoRem
);
[local]
HRESULT Execute(
[in, annotation("_In_opt_")] IUnknown * pUnkOuter,
[in] REFIID riid,
[in, out, annotation("_Inout_opt_")] DBPARAMS * pParams,
[out, annotation("_Out_opt_")] DBROWCOUNT * pcRowsAffected,
[out, iid_is(riid), annotation("_Outptr_opt_")] IUnknown ** ppRowset
);
#ifndef NO_REMOTE
#ifdef _WIN64 //Use casting by ULONG in attribute size_is under 64-bit environment.
[call_as(Execute)]
HRESULT RemoteExecute(
[in] IUnknown * pUnkOuter,
[in] REFIID riid,
[in] HACCESSOR hAccessor,
[in] DB_UPARAMS cParamSets,
[in, unique] GUID * pGuid,
[in] ULONG ulGuidOffset,
[in, unique] RMTPACK * pInputParams,
[in, out, unique] RMTPACK * pOutputParams,
[in] DBCOUNTITEM cBindings,
[in, unique, size_is((ULONG)cBindings)] DBBINDING * rgBindings,
[in, out, unique, size_is((ULONG)cBindings)] DBSTATUS * rgStatus,
[in, out, unique] DBROWCOUNT * pcRowsAffected,
[in, out, unique, iid_is(riid)] IUnknown ** ppRowset
);
#else //No casting by ULONG for 32-bit.
[call_as(Execute)]
HRESULT RemoteExecute(
[in] IUnknown * pUnkOuter,
[in] REFIID riid,
[in] HACCESSOR hAccessor,
[in] DB_UPARAMS cParamSets,
[in, unique] GUID * pGuid,
[in] ULONG ulGuidOffset,
[in, unique] RMTPACK * pInputParams,
[in, out, unique] RMTPACK * pOutputParams,
[in] DBCOUNTITEM cBindings,
[in, unique, size_is(cBindings)] DBBINDING * rgBindings,
[in, out, unique, size_is(cBindings)] DBSTATUS * rgStatus,
[in, out, unique] DBROWCOUNT * pcRowsAffected,
[in, out, unique, iid_is(riid)] IUnknown ** ppRowset
);
#endif
#endif
[local]
HRESULT GetDBSession(
[in] REFIID riid,
[out, iid_is(riid), annotation("_Outptr_result_maybenull_")] IUnknown ** ppSession
);
[call_as(GetDBSession)]
HRESULT RemoteGetDBSession(
[in] REFIID riid,
[out, iid_is(riid)] IUnknown ** ppSession,
[out] IErrorInfo ** ppErrorInfoRem
);
}
cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */")
#pragma endregion