File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1+ MemoryModule
2+ ============
3+
14The default windows API functions to load external libraries into a program
2- (LoadLibrary, LoadLibraryEx) only work with files on the filesystem. It's
5+ (` LoadLibrary ` , ` LoadLibraryEx ` ) only work with files on the filesystem. It's
36therefore impossible to load a DLL from memory.
47
58But sometimes, you need exactly this functionality (e.g. you don't want to
@@ -8,8 +11,8 @@ workarounds for this problems are to write the DLL into a temporary file
811first and import it from there. When the program terminates, the temporary
912file gets deleted.
1013
11- MemoryModule is a library that can be used to load a DLL completely from
14+ ` MemoryModule ` is a library that can be used to load a DLL completely from
1215memory - without storing on the disk first.
1316
14- See doc/readme.txt for more informations about the format of a DLL file and
17+ See ` doc/readme.txt ` for more informations about the format of a DLL file and
1518a tutorial how they can be loaded directly.
You can’t perform that action at this time.
0 commit comments