gexgd0419
gexgd0419
**Describe the bug** Here's [a Microsoft blog](https://blogs.msdn.microsoft.com/tiles_and_toasts/2016/11/04/how-to-keep-your-tile-notification-payload-under-5-kb/) that says: > The XML payload that you construct for your tile notifications must be no larger than 5 KB. Otherwise, you will...
#490 mentioned that OneNote will auto-resize containers as long as they haven't been resized manually. The same goes for images. Images can also be auto-resized to fit their containers, but...
相关 issue: #73 在 Win 11 23H2 环境下,调用系统的 API 以遍历所有的 LCID,使用得到的结果更新了代码中使用的表格。
`LocaleNameToLCID` 在不支持该函数的 XP 系统上是查表实现的。 https://github.com/Chuyu-Team/YY-Thunks/blob/b79ce32cc2d777838578f35467e6a281a8cdb98d/src/Thunks/api-ms-win-core-localization.hpp#L988-L993 表格为了二分查找做了排序,但是排序是按照区分大小写时的 ASCII 顺序排列的,例如 `zh-HK` 排在 `zh-Hans` 前面。 https://github.com/Chuyu-Team/YY-Thunks/blob/b79ce32cc2d777838578f35467e6a281a8cdb98d/src/Thunks/api-ms-win-core-localization.hpp#L1340-L1345 而比较字符串时使用的 `wcsicmp` 会将两边字符串都转换成小写再比较,这样一来 `zh-hans` 应该排在 `zh-hk` 前面。顺序的错乱导致某些 locale name 不能正常转换得到 LCID。 另外这个表格缺失某些项目,例如中性的 `zh` (LCID = `0x7804`) 就没有出现在表格中。
## Motivation Some users might get confused when they see so few available OCR languages and have no idea how to install a new language. The official way to install...
There's no `__declspec(dllexport)` or `__declspec(dllimport)` in the header file, so Sonic cannot be used directly as a DLL without modification, because nothing would be exported. Compiling a Windows DLL requires...
### Link to issue number: #18259 ### Summary of the issue: Digalo 2000 voices (SAPI4) do not work and cause memory access violation errors. ### Description of user facing changes:...
It seems that Regex scripts whose "ephemerality" are set to "alter chat display" are doing nothing to the message text shown in the timeline view, although they do affect how...
The current code assumes that the attribute `Language` of SAPI5 voices only has one hexadecimal value: https://github.com/nateshmbhat/pyttsx3/blob/7f110764ef309ff8a6e448762cd2396f20a10fb0/pyttsx3/drivers/sapi5.py#L105-L109 However, SAPI5 allows multiple values separated by semicolons, so that a voice can...
I wonder, is it possible to release a COM interface pointer manually by calling `Release()`, instead of waiting for its `__del__` to be called? The problem of this method is...