Export KeSetTimeIncrement
All checks were successful
All checks were successful
This commit is contained in:
@@ -466,6 +466,28 @@ KeSetTargetProcessorDpc(IN PKDPC Dpc,
|
||||
KE::Dpc::SetTargetProcessor(Dpc, Number);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the maximum and minimum time increment values in 100ns units.
|
||||
*
|
||||
* @param MaxIncrement
|
||||
* Supplies the maximum time increment.
|
||||
*
|
||||
* @param MinIncrement
|
||||
* Supplies the minimum time increment.
|
||||
*
|
||||
* @return This routine does not return any value.
|
||||
*
|
||||
* @since XT 1.0
|
||||
*/
|
||||
XTCLINK
|
||||
XTAPI
|
||||
VOID
|
||||
KeSetTimeIncrement(IN ULONG MaxIncrement,
|
||||
IN ULONG MinIncrement)
|
||||
{
|
||||
KE::SystemTime::SetTimeIncrement(MaxIncrement, MinIncrement);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the supplied timer to expire at the specified time.
|
||||
*
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
@ fastcall KeReleaseSpinLock(ptr)
|
||||
@ stdcall KeReleaseSystemResource(ptr)
|
||||
@ stdcall KeSetTargetProcessorDpc(ptr long)
|
||||
@ stdcall KeSetTimeIncrement(long long)
|
||||
@ stdcall KeSetTimer(ptr long long long ptr)
|
||||
@ stdcall KeSignalCallDpcDone(ptr)
|
||||
@ stdcall KeSignalCallDpcSynchronize(ptr)
|
||||
|
||||
Reference in New Issue
Block a user