Struct
HexChangeData
Description
struct HexChangeData {
gint64 start;
gint64 end;
size_t rep_len;
gboolean lower_nibble;
gboolean insert;
HexChangeType type;
char* v_string;
char v_byte;
}
A structure containing metadata about a change made to a
HexDocument
.
Structure members
start |
Start offset of the payload, in bytes. |
end |
End offset of the payload, in bytes. |
rep_len |
Amount of data to replace at |
lower_nibble |
|
insert |
|
type |
|
v_string |
String of the data representing a change, or |
v_byte |
Character representing a single byte to be changed, if applicable. |