windows-nt/Source/XPSP1/NT/net/config/netoc/ncias.h
2020-09-26 16:20:57 +08:00

47 lines
1.1 KiB
C

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1999.
//
// File: N C I A S . H
//
// Contents: Installation support for IAS service
//
// Notes:
//
// Author: tperraut 02/22/1999
//
//----------------------------------------------------------------------------
#ifndef _NCIAS_H_
#define _NCIAS_H_
#pragma once
#include "netoc.h"
HRESULT HrOcExtIAS(
PNETOCDATA pnocd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
);
HRESULT HrOcIASUpgrade(const PNETOCDATA pnocd);
HRESULT HrOcIASDelete(const PNETOCDATA pnocd);
HRESULT HrOcIASInstallCleanRegistry(const PNETOCDATA pnocd);
HRESULT HrOcIASBackupMdb(const PNETOCDATA pnocd);
HRESULT HrOcIASPreInf(const PNETOCDATA pnocd);
HRESULT HrOcIASPostInstall(const PNETOCDATA pnocd);
HRESULT HrOcIASRetrieveMDBNames(
tstring* pstrOriginalName,
tstring* pstrBackupName
);
#endif // _NCIAS_H_