memlib icon indicating copy to clipboard operation
memlib copied to clipboard

Load Windows DLL from memory

Results 8 memlib issues
Sort by recently updated
recently updated
newest added

Hoe can i load dll from byte array or base64 over tcp

This was required to make the hooks work for me without crashing in some situations. ReactOS has the type as `PULONG` https://doxygen.reactos.org/d7/d55/ldrapi_8c.html#a7671bda932dbb5096570f431ff83474c ![image](https://user-images.githubusercontent.com/2515062/150657332-786351f3-58de-4347-8383-139916108232.png) I also checked `LoadLibraryExW` (which is the...

First of all, thank you for yet another great library! I wanted to contribute at least a bit, by fixing an issue I found when testing this library. 😃

compile with `nim c -r .\src\webview2.nim` it reports `C:\Users\crc32\.nimble\pkgs\memlib-1.2.0\memlib.nim(1029) CreateCoreWebView2EnvironmentWithOptions` this may not related to this lib, but I have no clue , so asking here. https://github.com/bung87/webview2/blob/ed77f39687603bb3723d4ff0450990b8bd86e208/src/webview2/browser.nim#L59

When using ``rtlib`` and doesn't specify the calling convention, nim's dynlib will use cdecl as default calling convention, but rtlib using ``nimcall``.

Hi, I was trying to Embed a well known dll for Process fluid properties library in my program with memlib: **http://coolprop.org/** **dll here:** https://sourceforge.net/projects/coolprop/files/CoolProp/6.6.0/shared_library/Windows/64bit/ **The program compiles, but when executed...