Patch engine: add bd32, bd64 and utf8 patch types
bd32 is the same as be32 with a hint it's not executable. utf8 is NOT null-terminated string, null can be added manually.
This commit is contained in:
@@ -34,9 +34,12 @@ enum class patch_type
|
||||
lef64,
|
||||
be16,
|
||||
be32,
|
||||
bd32, // be32 with data hint (non-code)
|
||||
be64,
|
||||
bd64, // be64 with data hint (non-code)
|
||||
bef32,
|
||||
bef64,
|
||||
utf8, // Text of string (not null-terminated automatically)
|
||||
};
|
||||
|
||||
class patch_engine
|
||||
|
||||
Reference in New Issue
Block a user