diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-02-20 15:58:55 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-02-20 15:58:55 +0000 |
commit | 892d89627472a912e60a66d1b3e363de5d5ac3ab (patch) | |
tree | 3440890e9d9f40a627c8ceb5a9a5c2c0559769fd /winsup/cygwin/wincap.cc | |
parent | ea192e195df8d42a7134968afbd077270db88b0a (diff) | |
download | cygnal-892d89627472a912e60a66d1b3e363de5d5ac3ab.tar.gz cygnal-892d89627472a912e60a66d1b3e363de5d5ac3ab.tar.bz2 cygnal-892d89627472a912e60a66d1b3e363de5d5ac3ab.zip |
* wincap.h (wincap): Remove unnecessary definition of
supports_sparse_files.
* wincap.cc: Ditto.
Diffstat (limited to 'winsup/cygwin/wincap.cc')
-rw-r--r-- | winsup/cygwin/wincap.cc | 33 |
1 files changed, 11 insertions, 22 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index b5671c558..e70a362da 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -47,8 +47,7 @@ static NO_COPY wincaps wincap_unknown = { has_64bit_file_access:false, has_process_io_counters:false, supports_reading_modem_output_lines:false, - needs_memory_protection:false, - supports_sparse_files:false + needs_memory_protection:false }; static NO_COPY wincaps wincap_95 = { @@ -87,8 +86,7 @@ static NO_COPY wincaps wincap_95 = { has_64bit_file_access:false, has_process_io_counters:false, supports_reading_modem_output_lines:false, - needs_memory_protection:false, - supports_sparse_files:false + needs_memory_protection:false }; static NO_COPY wincaps wincap_95osr2 = { @@ -127,8 +125,7 @@ static NO_COPY wincaps wincap_95osr2 = { has_64bit_file_access:false, has_process_io_counters:false, supports_reading_modem_output_lines:false, - needs_memory_protection:false, - supports_sparse_files:false + needs_memory_protection:false }; static NO_COPY wincaps wincap_98 = { @@ -167,8 +164,7 @@ static NO_COPY wincaps wincap_98 = { has_64bit_file_access:false, has_process_io_counters:false, supports_reading_modem_output_lines:false, - needs_memory_protection:false, - supports_sparse_files:false + needs_memory_protection:false }; static NO_COPY wincaps wincap_98se = { @@ -207,8 +203,7 @@ static NO_COPY wincaps wincap_98se = { has_64bit_file_access:false, has_process_io_counters:false, supports_reading_modem_output_lines:false, - needs_memory_protection:false, - supports_sparse_files:false + needs_memory_protection:false }; static NO_COPY wincaps wincap_me = { @@ -247,8 +242,7 @@ static NO_COPY wincaps wincap_me = { has_64bit_file_access:false, has_process_io_counters:false, supports_reading_modem_output_lines:false, - needs_memory_protection:false, - supports_sparse_files:false + needs_memory_protection:false }; static NO_COPY wincaps wincap_nt3 = { @@ -287,8 +281,7 @@ static NO_COPY wincaps wincap_nt3 = { has_64bit_file_access:true, has_process_io_counters:false, supports_reading_modem_output_lines:true, - needs_memory_protection:true, - supports_sparse_files:false + needs_memory_protection:true }; static NO_COPY wincaps wincap_nt4 = { @@ -327,8 +320,7 @@ static NO_COPY wincaps wincap_nt4 = { has_64bit_file_access:true, has_process_io_counters:false, supports_reading_modem_output_lines:true, - needs_memory_protection:true, - supports_sparse_files:false + needs_memory_protection:true }; static NO_COPY wincaps wincap_nt4sp4 = { @@ -367,8 +359,7 @@ static NO_COPY wincaps wincap_nt4sp4 = { has_64bit_file_access:true, has_process_io_counters:false, supports_reading_modem_output_lines:true, - needs_memory_protection:true, - supports_sparse_files:false + needs_memory_protection:true }; static NO_COPY wincaps wincap_2000 = { @@ -407,8 +398,7 @@ static NO_COPY wincaps wincap_2000 = { has_64bit_file_access:true, has_process_io_counters:true, supports_reading_modem_output_lines:true, - needs_memory_protection:true, - supports_sparse_files:true + needs_memory_protection:true }; static NO_COPY wincaps wincap_xp = { @@ -447,8 +437,7 @@ static NO_COPY wincaps wincap_xp = { has_64bit_file_access:true, has_process_io_counters:true, supports_reading_modem_output_lines:true, - needs_memory_protection:true, - supports_sparse_files:true + needs_memory_protection:true }; wincapc wincap; |