(&self)
| 1005 | } |
| 1006 | |
| 1007 | fn entry_point_functions(&self) -> Array<Function> { |
| 1008 | unsafe { |
| 1009 | let mut count = 0; |
| 1010 | let functions = BNGetAllEntryFunctions(self.as_ref().handle, &mut count); |
| 1011 | |
| 1012 | Array::new(functions, count, ()) |
| 1013 | } |
| 1014 | } |
| 1015 | |
| 1016 | fn functions(&self) -> Array<Function> { |
| 1017 | unsafe { |
no test coverage detected