// ks.h
KSDDKAPI NTSTATUS KsValidateClockCreateRequest(
PIRP Irp,
[out] PKSCLOCK_CREATE *ClockCreate
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsValidateClockCreateRequest function validates the clock creation request and returns the create structure associated with the request.
This can only be called at PASSIVE_LEVEL.
IrpSpecifies the IRP with the clock create request being handled.
ClockCreate [out]Specifies the clock create structure pointer passed to the create request.
The KsValidateClockCreateRequest function returns STATUS_SUCCESS if successful, or an error if unsuccessful.