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.

36 lines
721 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: N C P R S H T . H
  7. //
  8. // Contents: NetCfg custom PropertySheet header
  9. //
  10. // Notes:
  11. //
  12. // Author: billbe 8 Apr 1997
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. #include "netcfgn.h"
  17. struct CAPAGES
  18. {
  19. int nCount;
  20. HPROPSHEETPAGE* ahpsp;
  21. };
  22. struct CAINCP
  23. {
  24. int nCount;
  25. INetCfgComponentPropertyUi** apncp;
  26. };
  27. HRESULT
  28. HrNetCfgPropertySheet(IN OUT LPPROPSHEETHEADER lppsh,
  29. IN const CAPAGES& capOem,
  30. IN PCWSTR pStartPage,
  31. IN const CAINCP& caiProperties);