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.
22 lines
690 B
22 lines
690 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: dl_str.h
|
|
//
|
|
// Module: Common Strings for all Modules to Utilize
|
|
//
|
|
// Synopsis: Header file for CMS and .CMP flags. Contents of this header
|
|
// should be optimized for CMDL usage.
|
|
//
|
|
// Copyright (c) 1997-1998 Microsoft Corporation
|
|
//
|
|
// Author: nickball Created 10/09/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef _CM_DL_STR
|
|
#define _CM_DL_STR
|
|
|
|
const TCHAR* const c_pszCmEntryBigIcon = TEXT("Icon");
|
|
const TCHAR* const c_pszCmEntrySmallIcon = TEXT("SmallIcon");
|
|
|
|
#endif // _CM_DL_STR
|