[style] embed_wintun.dll

This commit is contained in:
maze.y2b@gmail.com 2021-11-30 17:58:21 +08:00
parent c22c7efd07
commit 92bb026f70
9 changed files with 14 additions and 13 deletions

View file

@ -7,6 +7,7 @@ package wintun
import (
"fmt"
"github.com/Dreamacro/clash/listener/tun/dev/wintun/embed_dll"
"golang.zx2c4.com/wireguard/windows/driver/memmod"
"sync"
"sync/atomic"
@ -76,7 +77,7 @@ func (d *lazyDLL) Load() error {
return nil
}
module, err := memmod.LoadLibrary(ddlContent)
module, err := memmod.LoadLibrary(embed_dll.DDlContent)
if err != nil {
return fmt.Errorf("Unable to load library: %w", err)
}

View file

@ -1,4 +1,4 @@
package wintun
package embed_dll
// Copyright 2020 MeshStep Authors.
//
@ -17,5 +17,5 @@ import (
_ "embed"
)
//go:embed static/386/wintun.dll
var ddlContent []byte
//go:embed x86/wintun.dll
var DDlContent []byte

View file

@ -1,4 +1,4 @@
package wintun
package embed_dll
// Copyright 2020 MeshStep Authors.
//
@ -17,5 +17,5 @@ import (
_ "embed"
)
//go:embed static/arm/wintun.dll
var ddlContent []byte
//go:embed amd64/wintun.dll
var DDlContent []byte

View file

@ -1,4 +1,4 @@
package wintun
package embed_dll
// Copyright 2020 MeshStep Authors.
//
@ -17,5 +17,5 @@ import (
_ "embed"
)
//go:embed static/amd64/wintun.dll
var ddlContent []byte
//go:embed arm/wintun.dll
var DDlContent []byte

View file

@ -1,4 +1,4 @@
package wintun
package embed_dll
// Copyright 2020 MeshStep Authors.
//
@ -17,5 +17,5 @@ import (
_ "embed"
)
//go:embed static/arm64/wintun.dll
var ddlContent []byte
//go:embed arm64/wintun.dll
var DDlContent []byte