mirror of https://github.com/tongzx/nt5src
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.
28 lines
659 B
28 lines
659 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1998.
|
|
//
|
|
// File: N C C F G M G R.H
|
|
//
|
|
// Contents: Common code useful when using the Configuration Manager APIs.
|
|
//
|
|
// Notes: Pollute this under penalty of death.
|
|
//
|
|
// Author: shaunco 6 May 1998
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
#ifndef _NCCFGMGR_H_
|
|
#define _NCCFGMGR_H_
|
|
|
|
#include "ncdefine.h" // for NOTHROW
|
|
|
|
NOTHROW
|
|
HRESULT
|
|
HrFromConfigManagerError (
|
|
CONFIGRET cr,
|
|
HRESULT hrDefault);
|
|
|
|
#endif // _NCCFGMGR_H_
|