mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
83b85e2124
The source code is licensed under MS-PL license, taken from Windows Driver Samples repository (microsoft/Windows-driver-samples@master/storage/class/cdrom/) Synched with commit 96eb96dfb613e4c745db6bd1f53a92fe7e2290fc The driver is written for Windows 10 and uses KMDF so we compile it with ntoskrnl_vista and wdf01000 statically linked (for wdf01000 this will likely be changed in future) CORE-17129
23 lines
610 B
Text
23 lines
610 B
Text
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
//
|
|
// File: scsicdrm.rc
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#include <verrsrc.h>
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILESUBTYPE VFT2_DRV_SYSTEM
|
|
#define VER_FILEDESCRIPTION_STR "SCSI CD-ROM Driver"
|
|
#define VER_INTERNALNAME_STR "cdrom.sys"
|
|
#define VER_ORIGINALFILENAME_STR "cdrom.sys"
|
|
#define VER_LANGNEUTRAL
|
|
|
|
#include "common.ver"
|
|
|