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.

46 lines
1.1 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1999.
  5. //
  6. // File: N C I A S . H
  7. //
  8. // Contents: Installation support for IAS service
  9. //
  10. // Notes:
  11. //
  12. // Author: tperraut 02/22/1999
  13. //
  14. //----------------------------------------------------------------------------
  15. #ifndef _NCIAS_H_
  16. #define _NCIAS_H_
  17. #pragma once
  18. #include "netoc.h"
  19. HRESULT HrOcExtIAS(
  20. PNETOCDATA pnocd,
  21. UINT uMsg,
  22. WPARAM wParam,
  23. LPARAM lParam
  24. );
  25. HRESULT HrOcIASUpgrade(const PNETOCDATA pnocd);
  26. HRESULT HrOcIASDelete(const PNETOCDATA pnocd);
  27. HRESULT HrOcIASInstallCleanRegistry(const PNETOCDATA pnocd);
  28. HRESULT HrOcIASBackupMdb(const PNETOCDATA pnocd);
  29. HRESULT HrOcIASPreInf(const PNETOCDATA pnocd);
  30. HRESULT HrOcIASPostInstall(const PNETOCDATA pnocd);
  31. HRESULT HrOcIASRetrieveMDBNames(
  32. tstring* pstrOriginalName,
  33. tstring* pstrBackupName
  34. );
  35. #endif // _NCIAS_H_