Tony
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  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...