Charles Milette

Results 519 comments of Charles Milette

Simple: No chinese speech correction is integrated in the app.

I am seeing the same issue when trying to use the objdump from the Android NDK (tried both r17 and r21). Manually running `./i686-linux-android-objdump -drwS libmylib.so` works fine however

``` Tools: objdump: /home/sylveon/Android/Sdk/ndk/17.2.4988734/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-objdump nm: /home/sylveon/Android/Sdk/ndk/17.2.4988734/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-nm readelf: /home/sylveon/Android/Sdk/ndk/17.2.4988734/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-readelf size: /home/sylveon/Android/Sdk/ndk/17.2.4988734/toolchains/x86-4.9/prebuilt/linux-x86_64/bin/i686-linux-android-size Verifying config keys... Symbol selection regex: old binary: 'None' new binary: 'None' Symbol exclusion regex: old binary: 'None' new binary:...

The source code builds with Windows XP as target, and does use APIs introduced in Windows XP, so the idea of Windows NT compat is probably gone already. This just...

Preferably we should use a single build system for the entire project, because maintaining several is a maintenance burden more than anything else. Since CMake can generate Visual Studio solutions,...

You can use the vcpkg package. NuGet is generally a poor package manager for native dependencies.

If you follow the instructions in the vcpkg readme for setting it up and then run `vcpkg install detours:x64-windows` (replace x64 by the preferred architecture), it should be automatically picked...

> but it only updated 1 of my solution's 4 projects That's normal, the NuGet console is per-project: ![image](https://user-images.githubusercontent.com/6440374/90936932-4c3f2500-e3d4-11ea-85df-a63117401be7.png) > Also, once I git commit will this require every dev...

This code doesn't builds as of now, because GetThreadId requires at least Vista. Is there a better way of determining the identity of a thread that also works pre-Vista? If...

Yeah that was a solution, but `THREAD_BASIC_INFORMATION` is undocumented (it probably doesn't matter on XP since that is not getting any changes but I'd like to know if it's OK...