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.
27 lines
1.0 KiB
27 lines
1.0 KiB
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: pbk_str.h
|
|
//
|
|
// Module: Common Strings for all Modules to Utilize
|
|
//
|
|
// Synopsis: Header file for CMS flags, optimized for use by CMPBK32.DLL
|
|
//
|
|
// Copyright (c) 1997-1998 Microsoft Corporation
|
|
//
|
|
// Author: nickball Created 10/09/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef _CM_PBK_STR
|
|
#define _CM_PBK_STR
|
|
|
|
const TCHAR* const c_pszCmSectionIsp = TEXT("ISP");
|
|
const TCHAR* const c_pszCmEntryIspUrl = TEXT("PBURL");
|
|
const TCHAR* const c_pszCmEntryIspFilterA = TEXT("FilterA&");
|
|
const TCHAR* const c_pszCmEntryIspFilterB = TEXT("FilterB&");
|
|
const TCHAR* const c_pszCmEntryIspReferences = TEXT("References");
|
|
const TCHAR* const c_pszCmEntryIspCmsFile = TEXT("CMSFile&");
|
|
const TCHAR* const c_pszCmEntryIspPbFile = TEXT("PBFile");
|
|
const TCHAR* const c_pszCmEntryIspRegionFile = TEXT("RegionFile");
|
|
|
|
#endif // _CM_PBK_STR
|