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.

17 lines
498 B

  1. #include "ntddk.h"
  2. #include "port.h"
  3. //Port-Driver Data Structures
  4. ADAPTER_EXTENSION AdapterExtension;
  5. LOGICAL_UNIT_EXTENSION LogicalUnitExtension;
  6. SCSI_REQUEST_BLOCK Srb;
  7. COMMON_EXTENSION CommonExtension;
  8. REMOVE_TRACKING_BLOCK RemoveTrackingBlock;
  9. INTERRUPT_DATA InterruptData;
  10. SRB_DATA SrbData;
  11. PORT_CONFIGURATION_INFORMATION PortConfigInfo;
  12. int __cdecl main() {
  13. return 0;
  14. }