Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Library to load a DLL from memory.

License

NotificationsYou must be signed in to change notification settings

fancycode/MemoryModule

Repository files navigation

Build StatusBuild status

The default windows API functions to load external libraries into a program(LoadLibrary,LoadLibraryEx) only work with files on the filesystem. It'stherefore impossible to load a DLL from memory.

But sometimes, you need exactly this functionality (e.g. you don't want todistribute a lot of files or want to make disassembling harder). Commonworkarounds for this problems are to write the DLL into a temporary filefirst and import it from there. When the program terminates, the temporaryfile gets deleted.

MemoryModule is a library that can be used to load a DLL completely frommemory - without storing on the disk first.

Seedoc/readme.rst for more informations about the format of a DLL file anda tutorial how they can be loaded directly.


[8]ページ先頭

©2009-2025 Movatter.jp