40 lines
834 B
C
40 lines
834 B
C
|
//-----------------------------------------------------------------------------
|
||
|
//
|
||
|
// 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
|