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.

69 lines
1.1 KiB

  1. /*++
  2. Copyright (C) 1997-99 Microsoft Corporation
  3. Module Name:
  4. idedata.c
  5. Abstract:
  6. --*/
  7. #include "ideport.h"
  8. //
  9. // Beginning of Init Data
  10. //
  11. #pragma data_seg ("INIT")
  12. //
  13. // global data for crashdump or hibernate
  14. //
  15. CRASHDUMP_DATA DumpData;
  16. #pragma data_seg ()
  17. //
  18. // End of Pagable Data
  19. //
  20. //////////////////////////////////////
  21. //
  22. // Beginning of Pagable Data
  23. //
  24. #pragma data_seg ("PAGE")
  25. const CHAR SuperFloppyCompatibleIdString[12] = "GenSFloppy";
  26. //
  27. // PnP Dispatch Table
  28. //
  29. PDRIVER_DISPATCH FdoPnpDispatchTable[NUM_PNP_MINOR_FUNCTION];
  30. PDRIVER_DISPATCH PdoPnpDispatchTable[NUM_PNP_MINOR_FUNCTION];
  31. //
  32. // Wmi Dispatch Table
  33. //
  34. PDRIVER_DISPATCH FdoWmiDispatchTable[NUM_WMI_MINOR_FUNCTION];
  35. PDRIVER_DISPATCH PdoWmiDispatchTable[NUM_WMI_MINOR_FUNCTION];
  36. #pragma data_seg ()
  37. //
  38. // End of Pagable Data
  39. //
  40. //////////////////////////////////////
  41. //
  42. // Beginning of Nonpagable Data
  43. //
  44. #pragma data_seg ("NONPAGE")
  45. #pragma data_seg ()
  46. //
  47. // End of Nonpagable Data
  48. //