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.

32 lines
789 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 _RMTABLE_H_
  15. #define _RMTABLE_H_
  16. typedef enum DSRM_COMMAND_ENUM
  17. {
  18. eCommObjectDN = eCommLast+1,
  19. eCommContinue,
  20. eCommNoPrompt,
  21. eCommSubtree,
  22. eCommExclude,
  23. eTerminator
  24. };
  25. //
  26. // The parser table
  27. //
  28. extern ARG_RECORD DSRM_COMMON_COMMANDS[];
  29. #endif //_RMTABLE_H_