Leaked source code of windows server 2003
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.

57 lines
1.3 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 2000
  5. //
  6. // File: modtable.cpp
  7. //
  8. // Contents: Defines 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. //--------------------------------------------------------------------------
  15. #include "pch.h"
  16. #include "cstrings.h"
  17. #include "movetable.h"
  18. //+-------------------------------------------------------------------------
  19. // Parser table
  20. //--------------------------------------------------------------------------
  21. ARG_RECORD DSMOVE_COMMON_COMMANDS[] =
  22. {
  23. COMMON_COMMANDS
  24. //
  25. // objectDN
  26. //
  27. 0,(LPWSTR)c_sz_arg1_com_objectDN,
  28. 0,NULL,
  29. ARG_TYPE_STR, ARG_FLAG_REQUIRED|ARG_FLAG_NOFLAG|ARG_FLAG_STDIN|ARG_FLAG_DN,
  30. NULL,
  31. 0, NULL,
  32. //
  33. // newparent
  34. //
  35. 0, (PWSTR)c_sz_arg1_com_newparent,
  36. 0, NULL,
  37. ARG_TYPE_STR, ARG_FLAG_OPTIONAL,
  38. NULL,
  39. 0, NULL,
  40. //
  41. // newname
  42. //
  43. 0, (PWSTR)c_sz_arg1_com_newname,
  44. 0, NULL,
  45. ARG_TYPE_STR, ARG_FLAG_OPTIONAL,
  46. NULL,
  47. 0, NULL,
  48. ARG_TERMINATOR
  49. };