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.

43 lines
664 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. modify.h
  5. Abstract:
  6. This the include file for supporting modifying boot.ini and the DS entries for this machine.
  7. Author:
  8. Sean Selitrennikoff - 5/4/98
  9. Revision History:
  10. --*/
  11. //
  12. // Data types used in modification
  13. //
  14. #error ("this code is not currently compiled in. un-"#if 0" it to use it")
  15. #if 0
  16. typedef struct _IMIRROR_MODIFY_DS_INFO {
  17. WCHAR SetupPath[MAX_PATH];
  18. WCHAR ServerName[MAX_PATH];
  19. } IMIRROR_MODIFY_DS_INFO, *PIMIRROR_MODIFY_DS_INFO;
  20. //
  21. // Functions for processing each to do item
  22. //
  23. NTSTATUS
  24. ModifyDSEntries(
  25. IN PVOID pBuffer,
  26. IN ULONG Length
  27. );