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
24 lines
808 B
#include "ntddk.h"
|
|
#include <classpnp.h>
|
|
#include "classp.h"
|
|
#include "cdrom.h"
|
|
|
|
//Class-Driver Data Structures
|
|
|
|
MEDIA_CHANGE_DETECTION_INFO MediaChange;
|
|
FUNCTIONAL_DEVICE_EXTENSION FunctionalDeviceExtension;
|
|
PHYSICAL_DEVICE_EXTENSION PhysicalDeviceExtension;
|
|
COMMON_DEVICE_EXTENSION CommonDeviceExtension;
|
|
CLASS_PRIVATE_FDO_DATA ClassPrivateFdoData;
|
|
TRANSFER_PACKET TransferPacket;
|
|
MEDIA_CHANGE_DETECTION_INFO ChangeDetectionInfo;
|
|
DISK_GEOMETRY DiskGeometry;
|
|
SCSI_REQUEST_BLOCK Srb;
|
|
CDB Cdb;
|
|
CLASS_ERROR_LOG_DATA ClassErrorLogData;
|
|
STORAGE_DEVICE_DESCRIPTOR StorageDeviceDescriptor;
|
|
SENSE_DATA SenseData;
|
|
|
|
int __cdecl main() {
|
|
return 0;
|
|
}
|