mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
25c7e1a8d0
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
50 lines
1,018 B
Rust
50 lines
1,018 B
Rust
/*
|
||
vfdcmd.rs
|
||
|
||
Virtual Floppy Drive for Windows
|
||
Driver control program (console version)
|
||
Resource script
|
||
|
||
The non-standard extension ".rs" is intentional, so that
|
||
Microsoft Visual Studio won't try to open this file with
|
||
the resource editor
|
||
|
||
Copyright (c) 2003-2005 Ken Kato
|
||
*/
|
||
|
||
#ifndef APSTUDIO_INVOKED
|
||
|
||
//
|
||
// version resource
|
||
//
|
||
#include <winver.h>
|
||
#include "vfdver.h"
|
||
|
||
#define VFD_FILEOS VOS_NT_WINDOWS32
|
||
#define VFD_FILETYPE VFT_APP
|
||
#define VFD_FILESUBTYPE VFT2_UNKNOWN
|
||
|
||
#define VFD_DESCRIPTION "Virtual Floppy Drive Console"
|
||
#define VFD_INTERNALNAME "vfd.exe"
|
||
#define VFD_FILE_MAJOR 2
|
||
#define VFD_FILE_MINOR 1
|
||
|
||
//
|
||
// for Japanese version resources
|
||
//
|
||
#define VFD_VERSIONINFO_ALT "041104B0"
|
||
#undef VFD_VERSIONINFO_TRANS
|
||
#define VFD_VERSIONINFO_TRANS 0x0409, 0x04B0, 0x0411, 0x04B0
|
||
|
||
#define VFD_DESCRIPTION_ALT "Virtual Floppy Drive ƒRƒ“ƒ\<EFBFBD>[ƒ‹"
|
||
#define VFD_PRODUCT_NAME_ALT VFD_PRODUCT_NAME
|
||
|
||
#include "vfdver.rc"
|
||
|
||
//
|
||
// Message resource
|
||
//
|
||
#include "vfdmsg.rc"
|
||
|
||
#endif // not APSTUDIO_INVOKED
|