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.
|
|
//=======================================================================
//
// Copyright (c) 1998-2001 Microsoft Corporation. All Rights Reserved.
//
// File: FreeLog.h
//
// Owner: KenSh
//
// Description:
//
// Runtime logging for use in both checked and free builds.
//
//=======================================================================
#pragma once
#include <tchar.h>
#define DEFAULT_LOG_FILE_NAME _T("Windows Update.log")
void InitFreeLogging(LPCTSTR pszModuleName, LPCTSTR pszLogFileName = DEFAULT_LOG_FILE_NAME); void TermFreeLogging();
void LogMessage(LPCSTR pszFormatA, ...); void LogError(DWORD dwError, LPCSTR pszFormatA, ...);
|