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.

53 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. dsdata.c
  5. Abstract:
  6. Implemntation of LSA/Ds Initialization routines
  7. Author:
  8. Mac McLain (MacM) Jan 17, 1997
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #include <lsapch2.h>
  14. #include <dsp.h>
  15. //
  16. // Info how the LSA uses the DS
  17. //
  18. LSADS_DS_STATE_INFO LsaDsStateInfo = {
  19. NULL, // DsRoot
  20. NULL, // DsPartitionsContainer
  21. NULL, // DsSystemContainer
  22. NULL, // DsConfigurationContainer
  23. 0L, // DsDomainHandle
  24. // DsFuncTable
  25. { LsapDsOpenTransactionDummy,
  26. LsapDsApplyTransactionDummy,
  27. LsapDsAbortTransactionDummy },
  28. // SystemContainerItems
  29. { NULL,
  30. NULL },
  31. NULL, // SavedThreadState
  32. FALSE, // DsTransactionSave
  33. FALSE, // DsTHStateSave
  34. FALSE, // DsOperationSave
  35. FALSE, // WriteLocal
  36. FALSE, // UseDs
  37. FALSE, // FunctionTableInitialized
  38. FALSE, // DsInitializedAndRunning
  39. FALSE // Nt4UpgradeInProcess
  40. };