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

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2018-09-27 09:24:45 +02:00 committed by Alexandre Julliard
parent 90de9129cc
commit d2dbe856d4
1 changed files with 2 additions and 2 deletions

View File

@ -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);