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:
parent
90de9129cc
commit
d2dbe856d4
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue