Reactos
at master 83 lines 1.7 kB view raw
1/* 2 vfdlib.rc 3 4 Virtual Floppy Drive for Windows 5 Driver control library 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 constants 19// 20#include <winver.h> 21 22// 23// VFD common version constants 24// 25#include "vfdver.h" 26 27// 28// Library specific version constants 29// 30#include "vfdlib.h" 31 32#define VFD_FILEOS VOS_NT_WINDOWS32 33#define VFD_FILETYPE VFT_DLL 34#define VFD_FILESUBTYPE VFT2_UNKNOWN 35 36#define VFD_DESCRIPTION "Virtual Floppy Drive Library" 37#define VFD_INTERNALNAME VFD_LIBRARY_FILENAME 38#define VFD_FILE_MAJOR 2 39#define VFD_FILE_MINOR 1 40 41// 42// embedded VFD driver binary 43// 44#ifdef VFD_EMBED_DRIVER 45 46#define VFD_SPECIAL_FLAG VS_FF_SPECIALBUILD 47#define VFD_SPECIAL_DESC "Driver binary embedded version" 48#define VFD_SPECIAL_DESC_ALT "�h���C�o�o�C�i�����ߍ��ݔ�" 49 50#ifdef _DEBUG 51VFD_DRIVER_NAME_ID VFD_DRIVER_TYPE_ID "..\..\sys\objchk\i386\vfd.sys" 52#else // _DEBUG 53VFD_DRIVER_NAME_ID VFD_DRIVER_TYPE_ID "..\..\sys\objfre\i386\vfd.sys" 54#endif // _DEBUG 55 56#endif // VFD_EMBED_DRIVER 57 58// 59// Japanese version resource constants 60// 61#define VFD_VERSIONINFO_ALT "041104B0" 62#undef VFD_VERSIONINFO_TRANS 63#define VFD_VERSIONINFO_TRANS 0x0409, 0x04B0, 0x0411, 0x04B0 64 65#define VFD_DESCRIPTION_ALT "Virtual Floppy Drive ���C�u����" 66#define VFD_PRODUCT_NAME_ALT VFD_PRODUCT_NAME 67 68// 69// VFD common version resource 70// 71#include "vfdver.rc" 72 73// 74// GUI resource 75// 76#include "vfdlib.rc" 77 78// 79// Module message resource 80// 81#include "vfdmsg.rc" 82 83#endif // !APSTUDIO_INVOKED