diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-03-15 07:41:39 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-03-15 07:41:39 (GMT) |
commit | 750b5c293076b6a446088fa3020e4e0787d489d7 (patch) | |
tree | 80f392f7152d137a64aa28c0de84554beb066740 /release_docs | |
parent | 0ea7aa89ff872f810285b12ddde5d55165534afa (diff) | |
download | hdf5-750b5c293076b6a446088fa3020e4e0787d489d7.zip hdf5-750b5c293076b6a446088fa3020e4e0787d489d7.tar.gz hdf5-750b5c293076b6a446088fa3020e4e0787d489d7.tar.bz2 |
Adds _wopen support on Windows so that files with UTF-8 names
can be opened.
Fixes: HDFFV-2714, HDFFV-3914, HDFFV-3895, HDFFV-8237, HDFFV-10413, HDFFV-10691
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index aed539b..b5cc20c 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -135,6 +135,14 @@ New Features (DER - 2018/12/08, HDFFV-10252) + - Added the ability to open files with UTF-8 file names on Windows. + + The POSIX open(2) API call on Windows is limited to ASCII + file names. The library has been updated to convert incoming file + names to UTF-16 (via MultiByteToWideChar(CP_UTF8, ...) and use + _wopen() instead. + + (DER - 2019/03/15, HDFFV-2714, HDFFV-3914, HDFFV-3895, HDFFV-8237, HDFFV-10413, HDFFV-10691) Parallel Library: ----------------- |