2017-01-14 00:05:42 +00:00
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-07-30 14:28:58 -07:00
|
|
|
//go:build (!hurd && !linux && !freebsd && !darwin) || !cgo
|
2017-01-14 00:05:42 +00:00
|
|
|
|
|
|
|
package plugin
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
2018-09-24 21:46:21 +00:00
|
|
|
func lookup(p *Plugin, symName string) (Symbol, error) {
|
2017-01-14 00:05:42 +00:00
|
|
|
return nil, errors.New("plugin: not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func open(name string) (*Plugin, error) {
|
|
|
|
return nil, errors.New("plugin: not implemented")
|
|
|
|
}
|