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.
25 lines
671 B
25 lines
671 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// DS Administration MMC snapin.
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2002
|
|
//
|
|
// File: globals.cpp
|
|
//
|
|
// Contents: Definitions of constants and globals used in DSAdmin files.
|
|
//
|
|
// History: 2002/06/28-ArtM Created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "stdafx.h"
|
|
#include "globals.h"
|
|
|
|
// Maximum size for passwords.
|
|
const unsigned int MAX_PASSWORD_LENGTH = 127;
|
|
|
|
// Maximum length downlevel user logon names.
|
|
const unsigned int MAX_NT4_LOGON_LENGTH = 20;
|
|
|
|
|