xpmgr/BuildTools/Include/regprv.idl

47 lines
1017 B
Plaintext

//-----------------------------------------------------------------------------
// File: regprv.idl
//
// Copyright: Copyright (c) Microsoft Corporation
//
// Contents: OLE DB interface definition
//
// Comments:
//
//-----------------------------------------------------------------------------
#include "idlmulti.h"
REMOTED_INTERFACE(0c733ab9-2a1c-11ce-ade5-00aa0044773d)
interface IRegisterProvider : IUnknown
{
[local]
HRESULT GetURLMapping(
[in, annotation("__in_z")] LPCOLESTR pwszURL,
[in] DB_DWRESERVE dwReserved,
[out, annotation("__out")] CLSID * pclsidProvider
);
[call_as(GetURLMapping)]
HRESULT RemoteGetURLMapping(
[in] LPCOLESTR pwszURL,
[in] DB_DWRESERVE dwReserved,
[out] CLSID * pclsidProvider
);
HRESULT SetURLMapping(
[in, unique] LPCOLESTR pwszURL,
[in] DB_DWRESERVE dwReserved,
[in, unique] REFCLSID rclsidProvider
);
HRESULT UnregisterProvider(
[in, unique] LPCOLESTR pwszURL,
[in] DB_DWRESERVE dwReserved,
[in, unique] REFCLSID rclsidProvider
);
};