1 /* 2 vfdcmd.rs 3 4 Virtual Floppy Drive for Windows 5 Driver control program (console version) 6 Resource script 7 8 The non-standard extension ".rs" is intentional, so that 9 Microsoft Visual Studio won't try to open this file with 10 the resource editor 11 12 Copyright (c) 2003-2005 Ken Kato 13 */ 14 15 #ifndef APSTUDIO_INVOKED 16 17 // 18 // version resource 19 // 20 #include <winver.h> 21 #include "vfdver.h" 22 23 #define VFD_FILEOS VOS_NT_WINDOWS32 24 #define VFD_FILETYPE VFT_APP 25 #define VFD_FILESUBTYPE VFT2_UNKNOWN 26 27 #define VFD_DESCRIPTION "Virtual Floppy Drive Console" 28 #define VFD_INTERNALNAME "vfd.exe" 29 #define VFD_FILE_MAJOR 2 30 #define VFD_FILE_MINOR 1 31 32 // 33 // for Japanese version resources 34 // 35 #define VFD_VERSIONINFO_ALT "041104B0" 36 #undef VFD_VERSIONINFO_TRANS 37 #define VFD_VERSIONINFO_TRANS 0x0409, 0x04B0, 0x0411, 0x04B0 38 39 #define VFD_DESCRIPTION_ALT "Virtual Floppy Drive �R���\�[��" 40 #define VFD_PRODUCT_NAME_ALT VFD_PRODUCT_NAME 41 42 #include "vfdver.rc" 43 44 // 45 // Message resource 46 // 47 #include "vfdmsg.rc" 48 49 #endif // not APSTUDIO_INVOKED 50