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.

24 lines
808 B

  1. #include "ntddk.h"
  2. #include <classpnp.h>
  3. #include "classp.h"
  4. #include "cdrom.h"
  5. //Class-Driver Data Structures
  6. MEDIA_CHANGE_DETECTION_INFO MediaChange;
  7. FUNCTIONAL_DEVICE_EXTENSION FunctionalDeviceExtension;
  8. PHYSICAL_DEVICE_EXTENSION PhysicalDeviceExtension;
  9. COMMON_DEVICE_EXTENSION CommonDeviceExtension;
  10. CLASS_PRIVATE_FDO_DATA ClassPrivateFdoData;
  11. TRANSFER_PACKET TransferPacket;
  12. MEDIA_CHANGE_DETECTION_INFO ChangeDetectionInfo;
  13. DISK_GEOMETRY DiskGeometry;
  14. SCSI_REQUEST_BLOCK Srb;
  15. CDB Cdb;
  16. CLASS_ERROR_LOG_DATA ClassErrorLogData;
  17. STORAGE_DEVICE_DESCRIPTOR StorageDeviceDescriptor;
  18. SENSE_DATA SenseData;
  19. int __cdecl main() {
  20. return 0;
  21. }