charls/test/app.manifest
Victor Derks d79494c65a
Add Windows manifest files to the executables to activate utf-8, long path and SegmentHeap
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)
2020-09-30 23:55:17 +02:00

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>