Commit c42f38fd authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

netprofm: Create a connection point object for INetworkCostManagerEvents.

parent 516b21f4
......@@ -489,7 +489,8 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
if (!riid || !cp)
return E_POINTER;
if (IsEqualGUID( riid, &IID_INetworkListManagerEvents ))
if (IsEqualGUID( riid, &IID_INetworkListManagerEvents ) ||
IsEqualGUID( riid, &IID_INetworkCostManagerEvents ))
return connection_point_create( cp, riid, iface );
FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
......
......@@ -103,8 +103,12 @@ static void test_INetworkListManager( void )
ok( hr == S_OK, "got %08x\n", hr );
ok( !memcmp( &iid, &IID_INetworkListManagerEvents, sizeof(iid) ),
"Expected iid to be IID_INetworkListManagerEvents\n" );
IConnectionPoint_Release( pt );
hr = IConnectionPointContainer_FindConnectionPoint( cpc, &IID_INetworkCostManagerEvents, &pt );
ok( hr == S_OK || hr == CO_E_FAILEDTOIMPERSONATE, "got %08x\n", hr );
if (hr == S_OK) IConnectionPoint_Release( pt );
IConnectionPointContainer_Release( cpc );
INetworkListManager_Release( mgr );
}
......
......@@ -68,6 +68,8 @@ typedef struct NLM_SOCKADDR
BYTE data[128];
} NLM_SOCKADDR;
const UINT32 NLM_UNKNOWN_DATAPLAN_STATUS = 0xffffffff;
typedef struct NLM_USAGE_DATA
{
DWORD UsageInMegabytes;
......@@ -108,6 +110,21 @@ interface INetworkCostManager : IUnknown
}
[
object,
pointer_default(unique),
uuid(dcb00009-570f-4a9b-8d69-199fdba5723b)
]
interface INetworkCostManagerEvents : IUnknown
{
HRESULT CostChanged(
[in] DWORD newCost,
[in, unique] NLM_SOCKADDR *pDestAddr);
HRESULT DataPlanStatusChanged(
[in, unique] NLM_SOCKADDR *pDestAddr);
}
[
dual,
object,
oleautomation,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment