reactos/modules/rosapps/drivers/vfd/vfddrv.rc
Pierre Schweitzer 25c7e1a8d0
[VFD] Import the VFD project (Virtual Floppy Drive) which allows creating virtual
floppy drives in ReactOS and mount images on them.
Only the cmd got imported. The GUI interface may come later on.
Note that, as for vcdrom, the driver is left disabled and you need to explicitely
start it through vfd command line interface.

CORE-14090
2017-12-16 21:48:34 +01:00

31 lines
683 B
Plaintext

/*
vfddrv.rc
Virtual Floppy Drive for Windows NT platform
Kernel mode driver: version resource script
Copyright (C) 2003-2005 Ken Kato
*/
// !!! NOTE !!!
// Editing this file with Microsoft Visual Studio will almost
// certainly mess things up...
#ifndef APSTUDIO_INVOKED
#include <winver.h>
#include "vfdver.h"
#define VFD_FILEOS VOS_NT_WINDOWS32
#define VFD_FILETYPE VFT_DRV
#define VFD_FILESUBTYPE VFT2_DRV_SYSTEM
#define VFD_DESCRIPTION "Virtual Floppy Drive Kernel Mode Driver"
#define VFD_INTERNALNAME VFD_DRIVER_FILENAME
#define VFD_FILE_MAJOR VFD_DRIVER_MAJOR
#define VFD_FILE_MINOR VFD_DRIVER_MINOR
#include "vfdver.rc"
#endif // APSTUDIO_INVOKED