mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00

For backwards compatibility Windows will only activate new OS functionality by an opt-in mechanism (this to prevent breaking legacy apps). Activate the following: - Support for long path names (requires Windows 10 1607 or newer), File names longer then 260 characters are now supported. - The UTF-8 code page (requires Windows 10 1903 or newer). Unicode file names can be passed on the command line and opened. Calls to Win32 API functions with xxxA accept UTF-8 strings. - Usage of the new memory heap (requires Windows 10 2004 or newer)
22 lines
983 B
XML
22 lines
983 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
|
<application>
|
|
<!-- Windows 10 -->
|
|
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
|
|
</application>
|
|
</compatibility>
|
|
<application>
|
|
<windowsSettings>
|
|
<!-- Activate support for long path names (requires Windows 10 1607 or newer) -->
|
|
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true"</longPathAware>
|
|
|
|
<!-- Activate the UTF-8 code page (requires Windows 10 1903 or newer) -->
|
|
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
|
|
|
|
<!-- Activate the new memory heap (requires Windows 10 2004 or newer) -->
|
|
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
|
|
</windowsSettings>
|
|
</application>
|
|
</assembly>
|