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.

41 lines
1.9 KiB

  1. /****************************************************************************/
  2. /* Module: nwdwdata.c */
  3. /* */
  4. /* Purpose: Declare WD data items */
  5. /* */
  6. /* Copyright(C) Microsoft Corporation 1997-1998 */
  7. /****************************************************************************/
  8. /****************************************************************************/
  9. /* WD procedures */
  10. /* */
  11. /* We only need Open, Close, IOCtl. May need ChannelWrite for sound */
  12. /* support. */
  13. /****************************************************************************/
  14. const PSDPROCEDURE G_pWdProcedures[] =
  15. {
  16. (PSDPROCEDURE)WD_Open,
  17. (PSDPROCEDURE)WD_Close,
  18. (PSDPROCEDURE)WD_RawWrite,
  19. (PSDPROCEDURE)WD_ChannelWrite,
  20. NULL, // WdSyncWrite
  21. (PSDPROCEDURE)WD_Ioctl,
  22. };
  23. /****************************************************************************/
  24. /* WD callups */
  25. /****************************************************************************/
  26. const SDCALLUP G_pWdCallups[] =
  27. {
  28. NULL, // buffer alloc
  29. NULL, // buffer free
  30. NULL, // buffer error
  31. MCSIcaRawInput,
  32. MCSIcaChannelInput,
  33. };
  34. /****************************************************************************/
  35. /* WD Load / Unload variables */
  36. /****************************************************************************/
  37. LONG WD_ShareId = 0;