Leaked source code of windows server 2003
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

  1. #include "brian.h"
  2. #define DEFAULT_SECONDS 3
  3. VOID
  4. InputPause (
  5. IN PCHAR ParamBuffer
  6. )
  7. {
  8. TIME Time;
  9. Time.HighTime = -1;
  10. Time.LowTime = DEFAULT_SECONDS * -10000000;
  11. NtDelayExecution( FALSE, &Time );
  12. return;
  13. UNREFERENCED_PARAMETER( ParamBuffer );
  14. }