iop.inc
上传用户:lnzz01
上传日期:2013-05-23
资源大小:130k
文件大小:1k
源码类别:

DNA

开发平台:

C/C++

  1. ;****************************************************************************
  2. ;                                                                           *
  3. ; THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY     *
  4. ; KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE       *
  5. ; IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR     *
  6. ; PURPOSE.                                                                  *
  7. ;                                                                           *
  8. ; Copyright (C) 1993-95  Microsoft Corporation.  All Rights Reserved.       *
  9. ;                                                                           *
  10. ;****************************************************************************
  11. IOP_CALLBACK_TABLE_DEPTH EQU 6
  12. IOP_callback_entry STRUC
  13. IOP_CB_address DD ?
  14. IOP_CB_ref_data DD ?
  15. IOP_callback_entry ENDS
  16. IOP STRUC
  17. IOP_physical DD ?
  18. IOP_physical_dcb DD ?
  19. IOP_original_dcb DD ?
  20. IOP_timer DW ?
  21. IOP_timer_orig DW ?
  22. IOP_calldown_ptr DD ?
  23. IOP_callback_ptr DD ?
  24. IOP_voltrk_private DD ?
  25. ifdef WIN31COMPAT
  26. IOP_VM_Handle DD ?
  27. else
  28. IOP_Thread_Handle DD ?
  29. endif
  30. IOP_srb DD ?
  31. IOP_reserved DD 2 DUP (?)
  32. IOP_callback_table DB SIZE IOP_callback_entry * IOP_CALLBACK_TABLE_DEPTH DUP (?)
  33. IOP_format_head DB ?
  34. IOP_format_xfer_rate DB ?
  35. IOP_format_track DW ?
  36. IOP_format_num_sectors DD ?
  37. IOP_ior DB SIZE IOR DUP (?)
  38. IOP ENDS