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.

31 lines
764 B

  1. //
  2. // File: ncwins.h
  3. //
  4. // Purpose: Declare and define public constants and entry-points
  5. // for use in configuring Winsock dependancies.
  6. //
  7. // Author: 27-Mar-97 created scottbri
  8. //
  9. #pragma once
  10. //
  11. // Function: HrAddOrRemoveWinsockDependancy
  12. //
  13. // Purpose: To add or remove Winsock dependancies for components
  14. //
  15. // Parameters: nccObject [IN] - Current configuration object
  16. // pszSectionName [IN] - The Base install section name.
  17. // (The prefix for the .Services section)
  18. //
  19. // Returns: HRESULT, S_OK on success
  20. //
  21. HRESULT
  22. HrAddOrRemoveWinsockDependancy(
  23. HINF hinfInstallFile,
  24. PCWSTR pszSectionName);
  25. HRESULT
  26. HrRunWinsock2Migration(
  27. VOID);