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.

40 lines
749 B

  1. #include "netpch.h"
  2. #pragma hdrstop
  3. #include <setupapi.h>
  4. static
  5. HRESULT
  6. WINAPI
  7. HrGetAnswerFileParametersForNetCard(
  8. IN HDEVINFO hdi,
  9. IN PSP_DEVINFO_DATA pdeid,
  10. IN PCWSTR pszDeviceName,
  11. IN const GUID* pguidNetCardInstance,
  12. OUT PWSTR* ppszwAnswerFile,
  13. OUT PWSTR* ppszwAnswerSections)
  14. {
  15. return E_FAIL;
  16. }
  17. static
  18. HRESULT
  19. WINAPI
  20. HrOemUpgrade(
  21. IN HKEY hkeyDriver,
  22. IN PCWSTR pszAnswerFile,
  23. IN PCWSTR pszAnswerSection)
  24. {
  25. return E_FAIL;
  26. }
  27. //
  28. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  29. //
  30. DEFINE_PROCNAME_ENTRIES(netshell)
  31. {
  32. DLPENTRY(HrGetAnswerFileParametersForNetCard)
  33. DLPENTRY(HrOemUpgrade)
  34. };
  35. DEFINE_PROCNAME_MAP(netshell)