Source code of Windows XP (NT5)
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.

49 lines
1020 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1998
  6. //
  7. // File: scsiprop.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef _scsiprop_h_
  11. #define _scsiprop_h_ 1
  12. #define idh_devmgr_scsi_nohelp (DWORD(-1))
  13. #define idh_devmgr_scsi_tagged_queuing 400940
  14. #define idh_devmgr_scsi_transfersynch 400950
  15. typedef struct _SCSI_PAGE_DATA {
  16. HDEVINFO DeviceInfoSet;
  17. PSP_DEVINFO_DATA DeviceInfoData;
  18. BOOL TagQueuingOrigState;
  19. BOOL TagQueuingCurState;
  20. BOOL SyncTransOrigState;
  21. BOOL SyncTransCurState;
  22. } SCSI_PAGE_DATA, *PSCSI_PAGE_DATA;
  23. BOOL
  24. ScsiCheckDriveType (
  25. HDEVINFO DeviceInfoSet,
  26. PSP_DEVINFO_DATA DeviceInfoData);
  27. INT_PTR
  28. ScsiDialogProc(
  29. HWND Dialog,
  30. UINT Message,
  31. WPARAM WParam,
  32. LPARAM LParam
  33. );
  34. BOOL
  35. ScsiDialogCallback(
  36. HWND Dialog,
  37. UINT Message,
  38. LPPROPSHEETPAGE Page
  39. );
  40. #endif // _scsiprop_h_