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.
23 lines
796 B
23 lines
796 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: log_str.h
|
|
//
|
|
// Module: Strings for logging modules to utilize
|
|
//
|
|
// Synopsis: Header file containing common strings optimized for cmlog.
|
|
//
|
|
// Copyright (c) 2000 Microsoft Corporation
|
|
//
|
|
// Author: sumitc Created 25/07/2000
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef _CM_LOG_STR
|
|
#define _CM_LOG_STR
|
|
|
|
const TCHAR* const c_pszCmEntryEnableLogging = TEXT("EnableLogging");
|
|
const TCHAR* const c_pszCmSectionLogging = TEXT("Logging");
|
|
const TCHAR* const c_pszCmEntryMaxLogFileSize = TEXT("MaxFileSize");
|
|
const TCHAR* const c_pszCmEntryLogFileDirectory = TEXT("FileDirectory");
|
|
|
|
#endif // _CM_LOG_STR
|