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.

55 lines
1.1 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: A F I L E X P . H
  7. //
  8. // Contents: Functions exported from netsetup for answerfile related work.
  9. //
  10. // Author: kumarp 25-November-97
  11. //
  12. //----------------------------------------------------------------------------
  13. #pragma once
  14. #include "afileint.h"
  15. #include <syssetup.h>
  16. HRESULT
  17. HrInitForUnattendedNetSetup (
  18. IN INetCfg* pnc,
  19. IN PINTERNAL_SETUP_DATA pisd);
  20. HRESULT
  21. HrInitForRepair (VOID);
  22. VOID
  23. HrCleanupNetSetup();
  24. HRESULT
  25. HrInitAnswerFileProcessing (
  26. IN PCWSTR szAnswerFileName,
  27. OUT CNetInstallInfo** ppnii);
  28. EXTERN_C
  29. HRESULT
  30. WINAPI
  31. HrGetInstanceGuidOfPreNT5NetCardInstance(
  32. IN PCWSTR szPreNT5NetCardInstance,
  33. OUT LPGUID pguid);
  34. HRESULT
  35. HrResolveAnswerFileAdapters (
  36. IN INetCfg* pnc);
  37. HRESULT
  38. HrGetAnswerFileParametersForComponent (
  39. IN PCWSTR pszInfId,
  40. OUT PWSTR* ppszAnswerFile,
  41. OUT PWSTR* ppszAnswerSection);
  42. HRESULT
  43. HrGetAnswerFileName(
  44. OUT tstring* pstrAnswerFileName);