Source code of Windows XP (NT5)
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.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1998 - 1998
//
// File: rtrstr.h
//
//--------------------------------------------------------------------------
#undef RTRLIB_STRING
#undef RTRLIB_STRINGA
#undef RTRLIB_STRINGW
#ifdef _RTRLIB_STRINGS_DEFINE_STRINGS
#define RTRLIB_STRING(rg,s) const TCHAR rg[] = TEXT(s);
#define RTRLIB_STRINGA(rg,s) const char rg[] = s;
#define RTRLIB_STRINGW(rg,s) const WCHAR rg[] = s;
#else
#define RTRLIB_STRING(rg,s) extern const TCHAR rg[];
#define RTRLIB_STRINGA(rg,s) extern const char rg[];
#define RTRLIB_STRINGW(rg,s) extern const WCHAR rg[];
#endif
RTRLIB_STRING(c_szEmpty, "") RTRLIB_STRING(c_szEthernetII, "/EthII") RTRLIB_STRING(c_szEthernetSNAP, "/SNAP") RTRLIB_STRING(c_szEthernet8022, "/802.2") RTRLIB_STRING(c_szEthernet8023, "/802.3") RTRLIB_STRING(c_szHexCharacters, "0123456789ABCDEF") RTRLIB_STRING(c_szInterfaceName, "InterfaceName") RTRLIB_STRING(c_szRouterInterfacesKey, "SYSTEM\\CurrentControlSet\\Services\\Router\\Interfaces")
|