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.

29 lines
774 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: CompChck.h
  4. //
  5. // Module: CMDIAL32.DLL
  6. //
  7. // Synopsis: Provide the win32 only component checking and installing interface
  8. //
  9. // Copyright (c) 1998-1999 Microsoft Corporation
  10. //
  11. // Author: fengsun Created 10/21/97
  12. //
  13. //+----------------------------------------------------------------------------
  14. #ifndef COMPCHCK_H
  15. #define COMPCHCK_H
  16. //
  17. // By default, perform checks specified by dwComponentsToCheck, ignore reg key
  18. // install missed components
  19. //
  20. DWORD CheckAndInstallComponents(DWORD dwComponentsToCheck,
  21. HWND hWndParent,
  22. LPCTSTR pszServiceName,
  23. BOOL fIgnoreRegKey = TRUE,
  24. BOOL fUnattended = FALSE);
  25. void ClearComponentsChecked();
  26. #endif