Export KeSetTimeIncrement
All checks were successful
All checks were successful
This commit is contained in:
@@ -144,6 +144,12 @@ VOID
|
|||||||
KeSetTargetProcessorDpc(IN PKDPC Dpc,
|
KeSetTargetProcessorDpc(IN PKDPC Dpc,
|
||||||
IN CCHAR Number);
|
IN CCHAR Number);
|
||||||
|
|
||||||
|
XTCLINK
|
||||||
|
XTAPI
|
||||||
|
VOID
|
||||||
|
KeSetTimeIncrement(IN ULONG MaxIncrement,
|
||||||
|
IN ULONG MinIncrement);
|
||||||
|
|
||||||
XTCLINK
|
XTCLINK
|
||||||
XTAPI
|
XTAPI
|
||||||
VOID
|
VOID
|
||||||
|
|||||||
@@ -466,6 +466,28 @@ KeSetTargetProcessorDpc(IN PKDPC Dpc,
|
|||||||
KE::Dpc::SetTargetProcessor(Dpc, Number);
|
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.
|
* Sets the supplied timer to expire at the specified time.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
@ fastcall KeReleaseSpinLock(ptr)
|
@ fastcall KeReleaseSpinLock(ptr)
|
||||||
@ stdcall KeReleaseSystemResource(ptr)
|
@ stdcall KeReleaseSystemResource(ptr)
|
||||||
@ stdcall KeSetTargetProcessorDpc(ptr long)
|
@ stdcall KeSetTargetProcessorDpc(ptr long)
|
||||||
|
@ stdcall KeSetTimeIncrement(long long)
|
||||||
@ stdcall KeSetTimer(ptr long long long ptr)
|
@ stdcall KeSetTimer(ptr long long long ptr)
|
||||||
@ stdcall KeSignalCallDpcDone(ptr)
|
@ stdcall KeSignalCallDpcDone(ptr)
|
||||||
@ stdcall KeSignalCallDpcSynchronize(ptr)
|
@ stdcall KeSignalCallDpcSynchronize(ptr)
|
||||||
|
|||||||
Reference in New Issue
Block a user