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
938 B
29 lines
938 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: N S L O G . H
|
|
//
|
|
// Contents: Functions to log setup errors
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: kumarp 13-May-98
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
void NetSetupLogStatusVa(IN LogSeverity ls,
|
|
IN PCWSTR szFormat,
|
|
IN va_list arglist);
|
|
void NetSetupLogStatusV(IN LogSeverity ls,
|
|
IN PCWSTR szFormat,
|
|
IN ...);
|
|
void NetSetupLogComponentStatus(IN PCWSTR szCompId,
|
|
IN PCWSTR szAction,
|
|
IN HRESULT hr);
|
|
void NetSetupLogHrStatusV(IN HRESULT hr,
|
|
IN PCWSTR szFormat,
|
|
...);
|