mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 03:51:20 +00:00
17 lines
307 B
Go
17 lines
307 B
Go
|
//go:build windows
|
||
|
|
||
|
package silkworm
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
func OpenLibrary(dllPath string) (unsafe.Pointer, error) {
|
||
|
return nil, errors.New("not implemented")
|
||
|
}
|
||
|
|
||
|
func LoadFunction(dllHandle unsafe.Pointer, funcName string) (unsafe.Pointer, error) {
|
||
|
return nil, errors.New("not implemented")
|
||
|
}
|