Tony

Results 14 comments of Tony

Is it possible make it support update string table(RT_STRING).

need dll too, can you complite it to clr dll? ok, I have made it, unmanaged dll and manged dll(CLR).

thanks very much. Is there any version of C/C++ available ?

I mean these two dlls cannot be packaged by fody into a single file, must exist in the folder directory ?

when call 64bit unmanaged dll in 32bit application, if have pointer related.it will thrown exception: An IntPtr or UIntPtr with an eight byte value cannot be deserialized on a machine...

so how can I get the pointer value ![pic](https://user-images.githubusercontent.com/23111726/170803139-44e15e67-908c-4bc3-b090-c36cf82a7a2f.png) or it need use unsafe code? ``` [LegacyDllImport("pkeyhelper.dll")] public unsafe interface pkeyhelper64Dll : IDisposable { [LegacyDllMethod(CallingConvention = CallingConvention.Winapi)] int GetEditionNameFromId(uint EditionId,...

this is a windows system dll. call normally under 64 bit assembly: ``` [DllImport("pkeyhelper.dll", EntryPoint = "GetEditionNameFromId", CharSet = CharSet.Auto)] public extern static int GetEditionNameFromId1(int EditionId, out UIntPtr EditionName); [DllImport("pkeyhelper.dll",...

I have tried every type.

for x86, you need specify that the unmanaged call method been Cdecl: ```c [DllImport("libvosk", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public static extern void vosk_set_log_level(int log_level); [DllImport("libvosk", CharSet = CharSet.Ansi,...

> Managed to get it working by embedding the `e_sqlite3.dll` file using Costura. Hopefully this will help anyone facing the same issue. > > * The `sqlite-net-pcl` package depends on...