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.
26 lines
712 B
26 lines
712 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// DS Administration MMC snapin.
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2002
|
|
//
|
|
// File: globals.h
|
|
//
|
|
// Contents: Declarations of constants and globals used in DSAdmin files.
|
|
//
|
|
// History: 2002/06/28-ArtM Created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _DSADMIN_GLOBALS_
|
|
#define _DSADMIN_GLOBALS_
|
|
|
|
// Maximum size for passwords.
|
|
extern const unsigned int MAX_PASSWORD_LENGTH;
|
|
|
|
// Maximum length downlevel user logon names.
|
|
extern const unsigned int MAX_NT4_LOGON_LENGTH;
|
|
|
|
|
|
#endif //_DSADMIN_GLOBALS_
|