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.
39 lines
1.4 KiB
39 lines
1.4 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2000
|
|
//
|
|
// File: strings.h
|
|
//
|
|
// Contents: Global strings that will be needed throughout this project
|
|
//
|
|
// History: 06-Sep-2000 JeffJon Created
|
|
//
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _STRINGS_H_
|
|
#define _STRINGS_H_
|
|
|
|
static const BSTR g_bstrLDAPProvider = L"LDAP://";
|
|
static const BSTR g_bstrGCProvider = L"GC://";
|
|
static const BSTR g_bstrRootDSE = L"RootDSE";
|
|
static const BSTR g_bstrDefaultNCProperty = L"defaultNamingContext";
|
|
static const BSTR g_bstrSchemaNCProperty = L"schemaNamingContext";
|
|
static const BSTR g_bstrConfigNCProperty = L"configurationNamingContext";
|
|
|
|
static const BSTR g_bstrGroupScopeLocal = L"l";
|
|
static const BSTR g_bstrGroupScopeUniversal = L"u";
|
|
static const BSTR g_bstrGroupScopeGlobal = L"g";
|
|
|
|
static const BSTR g_bstrNever = L"NEVER";
|
|
static const BSTR g_bstrYes = L"yes";
|
|
static const BSTR g_bstrNo = L"no";
|
|
|
|
// Other attributes
|
|
static const BSTR g_bstrIDManagerReference = L"rIDManagerReference";
|
|
static const BSTR g_bstrFSMORoleOwner = L"fSMORoleOwner";
|
|
static const BSTR g_bstrDNSHostName = L"dNSHostName";
|
|
|
|
|
|
#endif // _STRINGS_H_
|