Source code of Windows XP (NT5)
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.

42 lines
809 B

  1. //
  2. // System level IO verification configuration utility
  3. // Copyright (c) Microsoft Corporation, 1999
  4. //
  5. //
  6. // module: regutil.hxx
  7. // author: DMihai
  8. // created: 04/19/99
  9. // description: registry keys manipulation routines
  10. //
  11. //
  12. #ifndef __REGUTIL_HXX_INCLUDED__
  13. #define __REGUTIL_HXX_INCLUDED__
  14. //
  15. // exit codes
  16. //
  17. #define EXIT_CODE_NOTHING_CHANGED 0
  18. #define EXIT_CODE_REBOOT 1
  19. #define EXIT_CODE_ERROR 2
  20. //////////////////////////////////////////////////
  21. void
  22. EnableSysIoVerifier(
  23. DWORD dwVerifierLevel );
  24. //////////////////////////////////////////////////
  25. void
  26. DisableSysIoVerifier( void );
  27. //////////////////////////////////////////////////
  28. void
  29. DumpSysIoVerifierStatus( void );
  30. #endif //#ifndef __REGUTIL_HXX_INCLUDED__