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.

57 lines
588 B

  1. /*++
  2. Copyright (c) 1998-2000 Microsoft Corporation
  3. Module Name:
  4. config.h
  5. Abstract:
  6. This is a local header file for config.c
  7. Author:
  8. Paul McDaniel (paulmcd) 27-Apr-2000
  9. Revision History:
  10. --*/
  11. #ifndef _CONFIG_H_
  12. #define _CONFIG_H_
  13. NTSTATUS
  14. SrReadConfigFile (
  15. );
  16. NTSTATUS
  17. SrWriteConfigFile (
  18. );
  19. NTSTATUS
  20. SrReadBlobInfo (
  21. );
  22. NTSTATUS
  23. SrReadBlobInfoWorker(
  24. IN PVOID pContext
  25. );
  26. NTSTATUS
  27. SrWriteRegistry (
  28. );
  29. NTSTATUS
  30. SrReadRegistry (
  31. IN PUNICODE_STRING pRegistry,
  32. IN BOOLEAN InDriverEntry
  33. );
  34. #endif // _CONFIG_H_