Open memory mapped file \param pathname is file name to open (unicode) \param mode is mode file should be opened in (LVOM_READ or LVOM_APPEND only) \param minSize is minimum file size for R/W mode \return reference to opened stream if success, NULL if error */
| 821 | \return reference to opened stream if success, NULL if error |
| 822 | */ |
| 823 | LVStreamRef LVMapFileStream( const lChar8 * pathname, lvopen_mode_t mode, lvsize_t minSize ) |
| 824 | { |
| 825 | lString16 fn = LocalToUnicode( lString8(pathname) ); |
| 826 | return LVMapFileStream( fn.c_str(), mode, minSize ); |
| 827 | } |
| 828 | |
| 829 | |
| 830 | //#ifdef _LINUX |
no test coverage detected