Zebediah Figura : quartz/tests: Remove the no longer used TestFilterImpl structure.
Module: wine Branch: master Commit: 11c336b4a97e7520df3c100b9a95e1a15262194e URL: https://source.winehq.org/git/wine.git/?a=commit;h=11c336b4a97e7520df3c100b9... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Sun May 16 16:37:26 2021 -0500 quartz/tests: Remove the no longer used TestFilterImpl structure. Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/quartz/tests/filtergraph.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/dlls/quartz/tests/filtergraph.c b/dlls/quartz/tests/filtergraph.c index 4822b65a7a6..b2d5b4e26e8 100644 --- a/dlls/quartz/tests/filtergraph.c +++ b/dlls/quartz/tests/filtergraph.c @@ -28,19 +28,6 @@ static const GUID testguid = {0xabbccdde}; -typedef struct TestFilterImpl -{ - IBaseFilter IBaseFilter_iface; - - LONG refCount; - CRITICAL_SECTION csFilter; - FILTER_STATE state; - FILTER_INFO filterInfo; - CLSID clsid; - IPin **ppPins; - UINT nPins; -} TestFilterImpl; - static BOOL compare_time(ULONGLONG x, ULONGLONG y, unsigned int max_diff) { ULONGLONG diff = x > y ? x - y : y - x;
participants (1)
-
Alexandre Julliard