15 lines
166 B
Go
15 lines
166 B
Go
//go:build windows
|
|
|
|
package platform
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed compat-layer.dll
|
|
var embeddedDLL []byte
|
|
|
|
func GetEmbeddedDLL() []byte {
|
|
return embeddedDLL
|
|
}
|