2025-04-27 07:49:33 -04:00

86 lines
2.8 KiB
C

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000 Microsoft Corporation
//
// Module Name:
// SendStatusReports.h
//
// Description:
// This file contains the declaration of the SendStatusReport
// functions.
//
// Documentation:
//
// Implementation Files:
// SendStatusReports.cpp
//
// Maintained By:
// Galen Barbee (GalenB) 28-AUG-2000
//
//////////////////////////////////////////////////////////////////////////////
// Make sure that this file is included only once per compile path.
#pragma once
//////////////////////////////////////////////////////////////////////////////
// Include Files
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// Constant Declarations
//////////////////////////////////////////////////////////////////////////////
HRESULT
HrSendStatusReport(
IClusCfgCallback * picccIn,
CLSID clsidTaskMajorIn,
CLSID clsidTaskMinorIn,
ULONG ulMinIn,
ULONG ulMaxIn,
ULONG ulCurrentIn,
HRESULT hrStatusIn,
const WCHAR * pcszDescriptionIn
);
HRESULT
HrSendStatusReport(
IClusCfgCallback * picccIn,
CLSID clsidTaskMajorIn,
CLSID clsidTaskMinorIn,
ULONG ulMinIn,
ULONG ulMaxIn,
ULONG ulCurrentIn,
HRESULT hrStatusIn,
DWORD dwDescriptionIn
);
HRESULT
HrSendStatusReport(
IClusCfgCallback * picccIn,
const WCHAR * pcszNodeName,
CLSID clsidTaskMajorIn,
CLSID clsidTaskMinorIn,
ULONG ulMinIn,
ULONG ulMaxIn,
ULONG ulCurrentIn,
HRESULT hrStatusIn,
DWORD dwDescriptionIn
);
HRESULT
HrSendStatusReport(
IClusCfgCallback * picccIn,
const WCHAR * pcszNodeName,
CLSID clsidTaskMajorIn,
CLSID clsidTaskMinorIn,
ULONG ulMinIn,
ULONG ulMaxIn,
ULONG ulCurrentIn,
HRESULT hrStatusIn,
const WCHAR * pcszDescriptionIn
);