Skip to content

Commit da78edc

Browse files
committed
Use markdown readme.
1 parent 8d286f8 commit da78edc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
MemoryModule
2+
============
3+
14
The 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
36
therefore impossible to load a DLL from memory.
47

58
But 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
811
first and import it from there. When the program terminates, the temporary
912
file 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
1215
memory - 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
1518
a tutorial how they can be loaded directly.

0 commit comments

Comments
 (0)