diff options
author | Christopher Faylor <me@cgf.cx> | 2005-05-06 04:06:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-05-06 04:06:17 +0000 |
commit | 8cdcc8803a5276fd6bc86d087b1f71fb47403ee2 (patch) | |
tree | 16cfc171c99aeaf3957af70bc2bbc81674c05206 /winsup/cygwin/devices.cc | |
parent | 9cc53904f63c78982051e2b8d72e23e8f9cb864e (diff) | |
download | cygnal-8cdcc8803a5276fd6bc86d087b1f71fb47403ee2.tar.gz cygnal-8cdcc8803a5276fd6bc86d087b1f71fb47403ee2.tar.bz2 cygnal-8cdcc8803a5276fd6bc86d087b1f71fb47403ee2.zip |
* Makefile.in (DLL_O_FILES): Add fhandler_netdrive.o.
* fhandler_netdrive.cc: Placeholder file for future development.
* devices.h (FH_NETDRIVE): Define new virtual device type.
(netdrive_dev): Define.
* devices.in (dev_netdrive_storage): Define.
* devices.cc: Regenerate.
Diffstat (limited to 'winsup/cygwin/devices.cc')
-rw-r--r-- | winsup/cygwin/devices.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/devices.cc b/winsup/cygwin/devices.cc index 582a2ee4e..b83f721cf 100644 --- a/winsup/cygwin/devices.cc +++ b/winsup/cygwin/devices.cc @@ -25,6 +25,9 @@ const device dev_fs_storage = const device dev_proc_storage = {"", {FH_PROC}, ""}; +const device dev_netdev_storage = + {"", {FH_NETDRIVE}, ""}; + const device dev_registry_storage = {"", {FH_REGISTRY}, ""}; |