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
920 B
25 lines
920 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: stp_str.h
|
|
//
|
|
// Module: Common Strings for all Modules to Utilize
|
|
//
|
|
// Synopsis: Header file containing common strings optimized for cmstp.
|
|
//
|
|
// Copyright (c) 1998 Microsoft Corporation
|
|
//
|
|
// Author: nickball Created 10/09/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef _CM_STP_STR
|
|
#define _CM_STP_STR
|
|
|
|
const TCHAR* const c_pszCmSectionProfileFormat = TEXT("Profile Format");
|
|
const TCHAR* const c_pszCmEntryDun = TEXT("DUN");
|
|
const TCHAR* const c_pszCmEntryDialup = TEXT("Dialup");
|
|
const TCHAR* const c_pszCmEntryDirect = TEXT("Direct");
|
|
const TCHAR* const c_pszCmEntryConnectionType = TEXT("ConnectionType");
|
|
const TCHAR* const c_pszCmpExt = TEXT(".cmp");
|
|
|
|
#endif // _CM_STP_STR
|