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.
 
 
 
 
 
 

39 lines
834 B

//-----------------------------------------------------------------------------
//
// File: logfile.h
// Copyright (C) 1994-1997 Microsoft Corporation
// All rights reserved.
//
//
//
//-----------------------------------------------------------------------------
#ifndef LOCUTIL_LOGFILE_H
#define LOCUTIL_LOGFILE_H
class LTAPIENTRY CLogFile
{
public:
CLogFile();
virtual void IssueMessage(const CLString &strFileName, const CLString &strItemId,
const CLString &strChange, UINT uiChangeId,
const CLString &strDetails, CGoto *, CGotoHelp *) = 0;
virtual ~CLogFile();
private:
CLogFile(const CLogFile &);
const CLogFile &operator=(const CLogFile &);
};
CLString LTAPIENTRY GetLogFileName(const TCHAR *szProjectPath,
const TCHAR *szAddOn, const TCHAR *szExtension);
#include "logfile.inl"
#endif