https://github.com/gmh5225/x64dbg-viewdllnotification
X64DBG plugin viewing dll notification
https://github.com/gmh5225/x64dbg-viewdllnotification
x64dbg x64dbg-plugin
Last synced: 5 months ago
JSON representation
X64DBG plugin viewing dll notification
- Host: GitHub
- URL: https://github.com/gmh5225/x64dbg-viewdllnotification
- Owner: gmh5225
- License: bsl-1.0
- Created: 2022-07-10T11:42:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-10T18:27:34.000Z (over 3 years ago)
- Last Synced: 2025-03-19T21:23:48.892Z (8 months ago)
- Topics: x64dbg, x64dbg-plugin
- Language: CMake
- Homepage:
- Size: 23.4 KB
- Stars: 10
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# X64DBG-ViewDllNotification
X64DBG plugin viewing dll notification

## Usage
```
ViewDllNotification
```
## Building
From a Visual Studio command prompt:
```
cmake -B build64 -A x64
cmake --build build64 --config Release
```
You will get `build64\ViewDllNotification.sln` that you can open in Visual Studio.
To build a 32-bit plugin:
```
cmake -B build32 -A Win32
cmake --build build32 --config Release
```
Alternatively you can open this folder in Visual Studio/CLion/Qt Creator.