mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
- Add pointerSize() to Provider base; WoW64/ELF detection in ProcessMemory, WinDbg, and RemoteProcessMemory plugins - Wire pointer size through NodeTree, source/XML imports, C++ generator, controller, compose, address parser, and RPC protocol header - Add is32Bit to PluginProcessInfo and ProcessInfo; show (32-bit) in picker - Scanner rescan now filters results against the current input value - Go-to-address from scanner resets change tracking to prevent false flashing
14 lines
475 B
C++
14 lines
475 B
C++
#pragma once
|
|
#include "core.h"
|
|
|
|
namespace rcx {
|
|
|
|
// Import a ReClass XML file (.reclass, .MemeCls, etc.) into a NodeTree.
|
|
// Supports ReClassEx, MemeClsEx, ReClass 2011/2013/2016 XML formats.
|
|
// pointerSize: 4 for 32-bit targets, 8 for 64-bit (default).
|
|
// Returns an empty NodeTree on failure; populates errorMsg if non-null.
|
|
NodeTree importReclassXml(const QString& filePath, QString* errorMsg = nullptr,
|
|
int pointerSize = 8);
|
|
|
|
} // namespace rcx
|