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.

65 lines
1.3 KiB

  1. #include "dspch.h"
  2. #pragma hdrstop
  3. #include <ntdsa.h>
  4. #include <drs.h>
  5. static
  6. DWORD
  7. KccInitialize(
  8. )
  9. {
  10. return ERROR_PROC_NOT_FOUND;
  11. }
  12. // Tells the KCC to shut down, but does not wait to see if it does so
  13. void
  14. KccUnInitializeTrigger()
  15. {
  16. return;
  17. }
  18. // Waits at most dwMaxWaitInMsec milliseconds for the current KCC task
  19. // to complete. You must call the trigger routine (above) first.
  20. DWORD
  21. KccUnInitializeWait(
  22. DWORD dwMaxWaitInMsec
  23. )
  24. {
  25. return ERROR_PROC_NOT_FOUND;
  26. }
  27. // Force the KCC to run a task (e.g., update the replication topology).
  28. DWORD
  29. KccExecuteTask(
  30. IN DWORD dwMsgVersion,
  31. IN DRS_MSG_KCC_EXECUTE * pMsg
  32. )
  33. {
  34. return ERROR_PROC_NOT_FOUND;
  35. }
  36. // Returns the contents of the connection or link failure cache.
  37. DWORD
  38. KccGetFailureCache(
  39. IN DWORD InfoType,
  40. OUT DS_REPL_KCC_DSA_FAILURESW ** ppFailures
  41. )
  42. {
  43. return ERROR_PROC_NOT_FOUND;
  44. }
  45. //
  46. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  47. //
  48. DEFINE_PROCNAME_ENTRIES(ntdskcc)
  49. {
  50. DLPENTRY(KccExecuteTask)
  51. DLPENTRY(KccGetFailureCache)
  52. DLPENTRY(KccInitialize)
  53. DLPENTRY(KccUnInitializeTrigger)
  54. DLPENTRY(KccUnInitializeWait)
  55. };
  56. DEFINE_PROCNAME_MAP(ntdskcc)