21 lines
644 B
C
21 lines
644 B
C
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: mgr_str.h
|
|
//
|
|
// Module: Common Strings for all Modules to Utilize
|
|
//
|
|
// Synopsis: Header file for CMS flags, optimized for CMMGR32.EXE
|
|
//
|
|
// Copyright (c) 1997-1998 Microsoft Corporation
|
|
//
|
|
// Author: nickball Created 10/09/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef _CM_MGR_STR
|
|
#define _CM_MGR_STR
|
|
|
|
const TCHAR* const c_pszCmEntryCmsFile = TEXT("CMSFile");
|
|
const TCHAR* const c_pszCmEntryServiceName = TEXT("ServiceName");
|
|
|
|
#endif // _CM_MGR_STR
|