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.
21 lines
311 B
21 lines
311 B
#include "brian.h"
|
|
|
|
#define DEFAULT_SECONDS 3
|
|
|
|
|
|
VOID
|
|
InputPause (
|
|
IN PCHAR ParamBuffer
|
|
)
|
|
{
|
|
TIME Time;
|
|
|
|
Time.HighTime = -1;
|
|
Time.LowTime = DEFAULT_SECONDS * -10000000;
|
|
|
|
NtDelayExecution( FALSE, &Time );
|
|
|
|
return;
|
|
|
|
UNREFERENCED_PARAMETER( ParamBuffer );
|
|
}
|