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.

30 lines
761 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 DSRM_COMMAND_ENUM
  17. {
  18. eCommObjectDN = eCommLast+1,
  19. eCommNewParent,
  20. eCommNewName,
  21. eTerminator
  22. };
  23. //
  24. // The parser table
  25. //
  26. extern ARG_RECORD DSMOVE_COMMON_COMMANDS[];
  27. #endif //_MOVETABLE_H_