mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +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
17 lines
323 B
C
17 lines
323 B
C
/*
|
|
vfdshguid.h
|
|
|
|
Virtual Floppy Drive for Windows
|
|
Driver control library
|
|
shell extension GUID header
|
|
|
|
Copyright (c) 2003-2005 Ken Kato
|
|
*/
|
|
|
|
#ifndef _VFDSHGUID_H_
|
|
#define _VFDSHGUID_H_
|
|
|
|
DEFINE_GUID(CLSID_VfdShellExt, 0x296c1585L, 0x678f, 0x4584,
|
|
0x8f, 0x02, 0x10, 0x39, 0xc1, 0xd1, 0x86, 0x4c);
|
|
|
|
#endif // _VFDSHGUID_H_
|