From 2cb5ab0017ef45624841cdb6f6b2dc5f2705e120 Mon Sep 17 00:00:00 2001 From: Boring <1079299053@qq.com> Date: Mon, 21 Feb 2022 09:25:54 +0800 Subject: [PATCH] update readme --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ecf9b7a..7220055 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # MemoryModulePP -[![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger) - MemoryModulePP, used to load a DLL from memory. MemoryModulePP is compatible with Win32 API and supports exception handling. **MemoryModulePP is developed based on [MemoryModule][ref1].** @@ -13,11 +11,12 @@ MemoryModulePP, used to load a DLL from memory. MemoryModulePP is compatible wit - Compatible with Win32 API (GetModuleHandle, GetModuleFileName, GetProcAddress and any Resource API) - Support for C++ exceptions and SEH - Optimized MEMORYMODULE structure - - Use reference counting, repeated loading of the same module will update the reference counting, please refer to NtLoadDllMemoryExW - - The above features can be turned off through the dwFlags parameter of NtLoadDllMemoryExW + - Use reference counting, repeated loading of the same module will update the reference counting, please refer to LdrLoadDllMemoryExW + - The above features can be turned off through the dwFlags parameter of LdrLoadDllMemoryExW - Support for TLS(Thread Local Storage) - DllMain can receive four types of notifications - Support forward export + - Provides limited support for .net assembly loading ## Tech