Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2005-04-12 00:44:45 +0400
committerCorinna Vinschen <corinna@vinschen.de>2005-04-12 00:44:45 +0400
commit48d304ef5a306c5ae0c9b508193636202521fb7d (patch)
tree9615744af30aaf866d64bd5393e98e6a8287724c /winsup/cygwin/wincap.cc
parent7cc9282c4e148f75e681a072bb9a8068a8bec3ef (diff)
* syscalls.cc (sync): Use renamed has_get_volume_pathnames wincap.
* wincap.h (wincaps::has_get_volume_pathnames): Rename from has_guid_volumes * wincap.cc: Accomodate above rename throughout. Set to false on Windows 2000.
Diffstat (limited to 'winsup/cygwin/wincap.cc')
-rw-r--r--winsup/cygwin/wincap.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc
index 9a790b087..bec5278b2 100644
--- a/winsup/cygwin/wincap.cc
+++ b/winsup/cygwin/wincap.cc
@@ -57,7 +57,7 @@ static NO_COPY wincaps wincap_unknown = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:true,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_95 = {
@@ -106,7 +106,7 @@ static NO_COPY wincaps wincap_95 = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:true,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_95osr2 = {
@@ -155,7 +155,7 @@ static NO_COPY wincaps wincap_95osr2 = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:true,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_98 = {
@@ -204,7 +204,7 @@ static NO_COPY wincaps wincap_98 = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:true,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_98se = {
@@ -253,7 +253,7 @@ static NO_COPY wincaps wincap_98se = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:true,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_me = {
@@ -302,7 +302,7 @@ static NO_COPY wincaps wincap_me = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:true,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_nt3 = {
@@ -351,7 +351,7 @@ static NO_COPY wincaps wincap_nt3 = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:false,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_nt4 = {
@@ -400,7 +400,7 @@ static NO_COPY wincaps wincap_nt4 = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:false,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_nt4sp4 = {
@@ -449,7 +449,7 @@ static NO_COPY wincaps wincap_nt4sp4 = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:false,
has_extended_priority_class:false,
- has_guid_volumes:false
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_2000 = {
@@ -498,7 +498,7 @@ static NO_COPY wincaps wincap_2000 = {
has_ioctl_storage_get_media_types_ex:false,
start_proc_suspended:false,
has_extended_priority_class:true,
- has_guid_volumes:true
+ has_get_volume_pathnames:false
};
static NO_COPY wincaps wincap_xp = {
@@ -547,7 +547,7 @@ static NO_COPY wincaps wincap_xp = {
has_ioctl_storage_get_media_types_ex:true,
start_proc_suspended:false,
has_extended_priority_class:true,
- has_guid_volumes:true
+ has_get_volume_pathnames:true
};
static NO_COPY wincaps wincap_2003 = {
@@ -596,7 +596,7 @@ static NO_COPY wincaps wincap_2003 = {
has_ioctl_storage_get_media_types_ex:true,
start_proc_suspended:false,
has_extended_priority_class:true,
- has_guid_volumes:true
+ has_get_volume_pathnames:true
};
wincapc wincap;