- Fix KsFilterFactoryGetDevice
CORE-11794

svn path=/trunk/; revision=73824
This commit is contained in:
Thomas Faber
2017-02-18 09:30:59 +00:00
parent 67e4aa500e
commit 5d76039958
+11 -1
View File
@@ -5064,10 +5064,20 @@ KsFilterCreatePinFactory(
_IRQL_requires_max_(PASSIVE_LEVEL)
KSDDKAPI
PKSDEVICE
NTAPI
KsGetDevice(
_In_ PVOID Object);
_IRQL_requires_max_(PASSIVE_LEVEL)
static
__inline
PKSDEVICE
KsFilterFactoryGetDevice(
_In_ PKSFILTERFACTORY FilterFactory);
_In_ PKSFILTERFACTORY FilterFactory)
{
return KsGetDevice((PVOID)FilterFactory);
}
/* etc. */
#endif /* avstream */