mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
- Remove M_ERR and M_PTR0 ambient markers from compose (validation only during inline edit) - Change ptr64 display name to void* in kKindMeta - Type picker now includes custom struct type names from the tree - Controller handles struct type selection from picker - Add project README Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
462 B
Markdown
23 lines
462 B
Markdown
# ReclassX
|
|
|
|
A hex editor for reading live process memory. It shows structs, pointers, arrays, and padding so you can see how data is laid out and how it connects.
|
|
|
|
Work in progress.
|
|
|
|

|
|
|
|
## Build
|
|
|
|
Requires Qt 6, QScintilla, and MinGW on Windows.
|
|
|
|
```
|
|
cmake -B build -G Ninja
|
|
cmake --build build
|
|
```
|
|
|
|
QScintilla must be built first as a static lib. There is a helper script:
|
|
|
|
```
|
|
powershell -File scripts/build_qscintilla.ps1
|
|
```
|