NewLoader - returns a new instance of a Loader
()
| 14 | |
| 15 | // NewLoader - returns a new instance of a Loader |
| 16 | func NewLoader() (*Loader, error) { |
| 17 | return &Loader{}, nil |
| 18 | } |
| 19 | |
| 20 | // LoadLibrary - loads a library into this process from the given buffer |
| 21 | func (l *Loader) LoadLibrary(name string, image *[]byte) (*Library, error) { |
no outgoing calls
searching dependent graphs…