diff options
Diffstat (limited to 'winsup/cygwin/wincap.cc')
-rw-r--r-- | winsup/cygwin/wincap.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index a72484f39..a92f7821f 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -21,6 +21,7 @@ static NO_COPY wincaps wincap_unknown = { has_physical_mem_access:true, has_process_io_counters:false, has_terminal_services:false, + has_create_global_privilege:false, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:false, has_guid_volumes:false, @@ -47,6 +48,7 @@ static NO_COPY wincaps wincap_nt4 = { has_physical_mem_access:true, has_process_io_counters:false, has_terminal_services:false, + has_create_global_privilege:false, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:false, has_guid_volumes:false, @@ -73,6 +75,7 @@ static NO_COPY wincaps wincap_nt4sp4 = { has_physical_mem_access:true, has_process_io_counters:false, has_terminal_services:false, + has_create_global_privilege:false, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:false, has_guid_volumes:false, @@ -99,6 +102,7 @@ static NO_COPY wincaps wincap_2000 = { has_physical_mem_access:true, has_process_io_counters:true, has_terminal_services:true, + has_create_global_privilege:false, has_ioctl_storage_get_media_types_ex:false, has_extended_priority_class:true, has_guid_volumes:true, @@ -125,6 +129,7 @@ static NO_COPY wincaps wincap_xp = { has_physical_mem_access:true, has_process_io_counters:true, has_terminal_services:true, + has_create_global_privilege:false, has_ioctl_storage_get_media_types_ex:true, has_extended_priority_class:true, has_guid_volumes:true, @@ -151,6 +156,7 @@ static NO_COPY wincaps wincap_2003 = { has_physical_mem_access:false, has_process_io_counters:true, has_terminal_services:true, + has_create_global_privilege:true, has_ioctl_storage_get_media_types_ex:true, has_extended_priority_class:true, has_guid_volumes:true, @@ -177,6 +183,7 @@ static NO_COPY wincaps wincap_vista = { has_physical_mem_access:false, has_process_io_counters:true, has_terminal_services:true, + has_create_global_privilege:true, has_ioctl_storage_get_media_types_ex:true, has_extended_priority_class:true, has_guid_volumes:true, |