Commit d2dbe856 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

quartz/tests: Make testpin_{AddRef,Release}() static.

parent 90de9129
......@@ -878,13 +878,13 @@ static HRESULT WINAPI testpin_QueryInterface(IPin *iface, REFIID iid, void **out
return E_NOINTERFACE;
}
ULONG WINAPI testpin_AddRef(IPin *iface)
static ULONG WINAPI testpin_AddRef(IPin *iface)
{
struct testpin *pin = impl_from_IPin(iface);
return InterlockedIncrement(&pin->ref);
}
ULONG WINAPI testpin_Release(IPin *iface)
static ULONG WINAPI testpin_Release(IPin *iface)
{
struct testpin *pin = impl_from_IPin(iface);
return InterlockedDecrement(&pin->ref);
......
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