mirror of https://github.com/tongzx/nt5src
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.
30 lines
1.1 KiB
30 lines
1.1 KiB
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: dial_str.h
|
|
//
|
|
// Module: CMDIAL32.DLL
|
|
//
|
|
// Synopsis: Header file for CMS and .CMP flags used among various cmdial modules
|
|
//
|
|
// Copyright (c) 1998 Microsoft Corporation
|
|
//
|
|
// Author: nickball Created 10/15/98
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
#ifndef _CM_DIAL_STR
|
|
#define _CM_DIAL_STR
|
|
|
|
const TCHAR* const c_pszCmEntryMaxUserName = TEXT("MaxUserName");
|
|
const TCHAR* const c_pszCmEntryMaxPassword = TEXT("MaxPassword");
|
|
const TCHAR* const c_pszCmEntryMaxDomain = TEXT("MaxDomain");
|
|
const TCHAR* const c_pszCmEntryMaxPhoneNumber = TEXT("MaxPhoneNumber");
|
|
|
|
const TCHAR* const c_pszCmEntryRedialCount = TEXT("RedialCount");
|
|
const TCHAR* const c_pszCmEntryPwdOptional = TEXT("PasswordOptional");
|
|
const TCHAR* const c_pszCmEntryDialDevice = TEXT("Modem");
|
|
const TCHAR* const c_pszCmEntryTunnelDevice = TEXT("TunnelDevice");
|
|
|
|
const TCHAR* const c_pszCmEntryCallbackNumber = TEXT("CallbackNumber");
|
|
|
|
#endif // _CM_DIAL_STR
|