mirror of https://github.com/tongzx/nt5src
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
844 B
40 lines
844 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2000
|
|
//
|
|
// File: modtable.h
|
|
//
|
|
// Contents: Declares a table which contains the object types on which
|
|
// a modification can occur and the attributes that can be changed
|
|
//
|
|
// History: 07-Sep-2000 JeffJon Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _MOVETABLE_H_
|
|
#define _MOVETABLE_H_
|
|
|
|
typedef enum COMMON_COMMAND
|
|
{
|
|
#ifdef DBG
|
|
eCommDebug,
|
|
#endif
|
|
eCommHelp,
|
|
eCommServer,
|
|
eCommDomain,
|
|
eCommUserName,
|
|
eCommPassword,
|
|
eCommQuiet,
|
|
eCommObjectDN,
|
|
eCommNewParent,
|
|
eCommNewName,
|
|
eTerminator
|
|
};
|
|
|
|
//
|
|
// The parser table
|
|
//
|
|
extern ARG_RECORD DSMOVE_COMMON_COMMANDS[];
|
|
|
|
#endif //_MOVETABLE_H_
|