sample source)
KTimer Timer;
LARGE_INTEGER dueTimer = 0xfff0bdc0;
LARGE_INTEGER period = 0xffffffff;
KDPC dpc;
KeInitializeTimerEx(&Timer, SynchronizationTimer);
KeInitializeDpc(&dpc,
(PKDEFERRED_ROUTINE)TimerRoutine,
devicecontext);
KeSetTimerEx(&Timer, dueTimer , period );
I wonder that dueTimer, period argument in tKeSetTImerEx.
It have too much value.
help this, thanks