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.

34 lines
955 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: N C I N F . H
  7. //
  8. // Contents: ???
  9. //
  10. // Notes:
  11. //
  12. // Author: ???
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. #ifndef _NCINF_H_
  17. #define _NCINF_H_
  18. typedef HRESULT (CALLBACK *PFNADDCALLBACK) (HINF hinf, PCWSTR pszSection);
  19. typedef HRESULT (CALLBACK *PFNREMOVECALLBACK) (HINF hinf, PCWSTR pszSection);
  20. typedef HRESULT (CALLBACK *PFNHRENTRYPOINT) (PCWSTR, LPGUID);
  21. HRESULT
  22. HrProcessInfExtension (
  23. HINF hinfInstallFile,
  24. PCWSTR pszSectionName,
  25. PCWSTR pszSuffix,
  26. PCWSTR pszAddLabel,
  27. PCWSTR pszRemoveLabel,
  28. PFNADDCALLBACK pfnHrAdd,
  29. PFNREMOVECALLBACK pfnHrRemove);
  30. #endif //_NCINF_H_