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.
25 lines
951 B
25 lines
951 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: mon_str.h
|
|
//
|
|
// Module: Common Strings for all Modules to Utilize
|
|
//
|
|
// Synopsis: Header file for CMS flags, optimized for use by CMMON32.EXE
|
|
//
|
|
// Copyright (c) 1997-1998 Microsoft Corporation
|
|
//
|
|
// Author: nickball Created 10/09/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef _CM_MON_STR
|
|
#define _CM_MON_STR
|
|
|
|
const TCHAR* const c_pszCmEntryHelpFile = TEXT("HelpFile");
|
|
const TCHAR* const c_pszCmSectionMenuOptions = TEXT("Menu Options");
|
|
const TCHAR* const c_pszCmEntryIdleTimeout = TEXT("IdleTimeout");
|
|
const TCHAR* const c_pszCmEntryAutoReconnect = TEXT("AutoReconnect");
|
|
const TCHAR* const c_pszCmEntryTrayIcon = TEXT("TrayIcon");
|
|
const TCHAR* const c_pszDefaultHelpFile = TEXT("cmmgr32.hlp");
|
|
|
|
#endif // _CM_MON_STR
|