File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ impl Aarch64InstructionWriter {
79
79
}
80
80
81
81
/// Get the underlying frida gum writer object
82
- pub fn writer ( & self ) -> * mut gum_sys:: _GumArm64Writer {
82
+ pub fn raw_writer ( & self ) -> * mut gum_sys:: _GumArm64Writer {
83
83
self . writer
84
84
}
85
85
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ impl ArmInstructionWriter {
63
63
}
64
64
65
65
/// Get the underlying frida gum writer object
66
- pub fn writer ( & self ) -> * mut gum_sys:: _GumArmWriter {
66
+ pub fn raw_writer ( & self ) -> * mut gum_sys:: _GumArmWriter {
67
67
self . writer
68
68
}
69
69
}
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ impl X86InstructionWriter {
76
76
}
77
77
78
78
/// Get the underlying frida gum writer object
79
- pub fn writer ( & self ) -> * mut gum_sys:: _GumX86Writer {
79
+ pub fn raw_writer ( & self ) -> * mut gum_sys:: _GumX86Writer {
80
80
self . writer
81
81
}
82
82
Original file line number Diff line number Diff line change @@ -145,6 +145,11 @@ impl Stalker {
145
145
}
146
146
}
147
147
148
+ /// Get the underlying frida stalker object
149
+ pub fn raw_stalker ( & self ) -> * mut frida_gum_sys:: GumStalker {
150
+ self . stalker
151
+ }
152
+
148
153
/// Exclude a range of address from the Stalker engine.
149
154
///
150
155
/// This exclusion will prevent the Stalker from tracing into the memory range,
You can’t perform that action at this time.
0 commit comments