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.

75 lines
1.6 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 "rmtable.h"
  18. //+-------------------------------------------------------------------------
  19. // Parser table
  20. //--------------------------------------------------------------------------
  21. ARG_RECORD DSRM_COMMON_COMMANDS[] =
  22. {
  23. COMMON_COMMANDS
  24. //
  25. // objectDN
  26. //
  27. 0,(LPWSTR)c_sz_arg1_com_objectDN,
  28. 0,NULL,
  29. ARG_TYPE_MSZ, ARG_FLAG_REQUIRED|ARG_FLAG_NOFLAG|ARG_FLAG_STDIN|ARG_FLAG_DN,
  30. NULL,
  31. 0, NULL,
  32. //
  33. // continue
  34. //
  35. 0, (PWSTR)c_sz_arg1_com_continue,
  36. 0, NULL,
  37. ARG_TYPE_BOOL, ARG_FLAG_OPTIONAL,
  38. NULL,
  39. 0, NULL,
  40. //
  41. // noprompt
  42. //
  43. 0, (PWSTR)c_sz_arg1_com_noprompt,
  44. 0, NULL,
  45. ARG_TYPE_BOOL, ARG_FLAG_OPTIONAL,
  46. NULL,
  47. 0, NULL,
  48. //
  49. // subtree
  50. //
  51. 0, (PWSTR)c_sz_arg1_com_subtree,
  52. 0, NULL,
  53. ARG_TYPE_BOOL, ARG_FLAG_OPTIONAL,
  54. NULL,
  55. 0, NULL,
  56. //
  57. // exclude
  58. //
  59. 0, (PWSTR)c_sz_arg1_com_exclude,
  60. 0, NULL,
  61. ARG_TYPE_BOOL, ARG_FLAG_OPTIONAL,
  62. NULL,
  63. 0, NULL,
  64. ARG_TERMINATOR
  65. };