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
769 B
22 lines
769 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: inf_str.h
|
|
//
|
|
// Module: Common Strings for all Modules to Utilize
|
|
//
|
|
// Synopsis: Header file INF flags used by CM and CMAK
|
|
//
|
|
// Copyright (c) 1997-1998 Microsoft Corporation
|
|
//
|
|
// Author: nickball Created 10/09/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
#ifndef _CM_INF_STR
|
|
#define _CM_INF_STR
|
|
|
|
const TCHAR* const c_pszDesktopGuid = TEXT("DesktopGUID");
|
|
const TCHAR* const c_pszInfSectionStrings = TEXT("Strings");
|
|
const TCHAR* const c_pszShortSvcName = TEXT("ShortSvcName");
|
|
const TCHAR* const c_pszCmakStatus = TEXT("CMAK Status");
|
|
|
|
#endif // _CM_INF_STR
|