ReClassNET / ReClass.NET-UnrealEngineClassesPlugin

A ReClass.NET plugin which adds support for some Unreal Engine core classes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing method definition: ReadRemoteString().

Brunocg opened this issue · comments

The below error appear while compiling UnrealEngineClassesPlugin
'RemoteProcess' does not contain a definition for 'ReadRemoteString' and no accessible extension method 'ReadRemoteString' accepting a first argument of type 'RemoteProcess' could be found (are you missing a using directive or an assembly reference?)

it was moved out with this commit:
ReClassNET/ReClass.NET@e968a29#diff-56ab2a0c17dd1e29df0ec0300c87e39aa6159f260119206d62e19fb3b2de6909R90

need to add:

using ReClassNET.Extensions;

and

...
var text = context.Process.ReadRemoteString(ptr, Encoding.Unicode, length);
...

Compiles OK and loads now.