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.

39 lines
844 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 2000
  5. //
  6. // File: modtable.h
  7. //
  8. // Contents: Declares a table which contains the object types on which
  9. // a modification can occur and the attributes that can be changed
  10. //
  11. // History: 07-Sep-2000 JeffJon Created
  12. //
  13. //--------------------------------------------------------------------------
  14. #ifndef _MOVETABLE_H_
  15. #define _MOVETABLE_H_
  16. typedef enum COMMON_COMMAND
  17. {
  18. #ifdef DBG
  19. eCommDebug,
  20. #endif
  21. eCommHelp,
  22. eCommServer,
  23. eCommDomain,
  24. eCommUserName,
  25. eCommPassword,
  26. eCommQuiet,
  27. eCommObjectDN,
  28. eCommNewParent,
  29. eCommNewName,
  30. eTerminator
  31. };
  32. //
  33. // The parser table
  34. //
  35. extern ARG_RECORD DSMOVE_COMMON_COMMANDS[];
  36. #endif //_MOVETABLE_H_