Library - describes a loaded library
| 2 | |
| 3 | // Library - describes a loaded library |
| 4 | type Library struct { |
| 5 | Name string |
| 6 | BaseAddress uintptr |
| 7 | Exports map[string]uint64 |
| 8 | } |
| 9 | |
| 10 | // Loader - keeps track of |
| 11 | type Loader struct { |
nothing calls this directly
no outgoing calls
no test coverage detected