mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
764 B
39 lines
764 B
/*++
|
|
|
|
Copyright (c) 1997-2000 Microsoft Corporation All Rights Reserved
|
|
|
|
Module Name:
|
|
|
|
kshelper.h
|
|
|
|
Abstract:
|
|
|
|
Helper functions for msvad
|
|
|
|
--*/
|
|
#ifndef _MSVAD_KSHELPER_H_
|
|
#define _MSVAD_KSHELPER_H_
|
|
|
|
#include <portcls.h>
|
|
#include <ksdebug.h>
|
|
|
|
PWAVEFORMATEX GetWaveFormatEx
|
|
(
|
|
IN PKSDATAFORMAT pDataFormat
|
|
);
|
|
|
|
NTSTATUS PropertyHandler_BasicSupport
|
|
(
|
|
IN PPCPROPERTY_REQUEST PropertyRequest,
|
|
IN ULONG Flags,
|
|
IN DWORD PropTypeSetId
|
|
);
|
|
|
|
NTSTATUS ValidatePropertyParams
|
|
(
|
|
IN PPCPROPERTY_REQUEST PropertyRequest,
|
|
IN ULONG cbValueSize,
|
|
IN ULONG cbInstanceSize = 0
|
|
);
|
|
|
|
#endif
|