mirror of https://github.com/lianthony/NT4.0
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.
40 lines
1.2 KiB
40 lines
1.2 KiB
//*********************************************************************
|
|
//* Microsoft Windows **
|
|
//* Copyright(c) Microsoft Corp., 1994 **
|
|
//*********************************************************************
|
|
|
|
//
|
|
// STRINGS.H - String literals for hard-coded strings
|
|
//
|
|
|
|
// HISTORY:
|
|
//
|
|
// 4/6/95 jeremys Created.
|
|
//
|
|
|
|
#ifndef _STRINGS_H_
|
|
#define _STRINGS_H_
|
|
|
|
// registry strings
|
|
extern const CHAR szRegPathRemoteAccess[];
|
|
extern const CHAR szRegPathInternetSettings[];
|
|
extern const CHAR szRegValInternetEntry[];
|
|
extern const CHAR szRegValEnableAutodial[];
|
|
extern const CHAR szRegValEnableAutodisconnect[];
|
|
extern const CHAR szRegValEnableSecurityCheck[];
|
|
extern const CHAR szRegValDisconnectIdleTime[];
|
|
extern const CHAR szRegPathMOSDisconnect[];
|
|
extern const CHAR szRegValMOSDisconnect[];
|
|
|
|
extern const CHAR szRegValProxyEnable[];
|
|
extern const CHAR szRegValProxyServer[];
|
|
extern const CHAR szRegValProxyOverride[];
|
|
|
|
// RNA api function names
|
|
extern const CHAR szRnaActivateEngine[];
|
|
extern const CHAR szRnaDeactivateEngine[];
|
|
extern const CHAR szRnaEnumConnEntries[];
|
|
extern const CHAR szRasCreatePhonebookEntry[];
|
|
extern const CHAR szRasEditPhonebookEntry[];
|
|
|
|
#endif // _STRINGS_H_
|