Skip to content

Commit

Permalink
All: More module fork changes after upstream rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijenbergh committed May 27, 2024
1 parent 8107d89 commit a81d4e8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ package purego
import (
_ "runtime/cgo"

_ "github.com/ebitengine/purego/internal/cgo"
_ "github.com/jwijenbergh/purego/internal/cgo"
)
4 changes: 2 additions & 2 deletions examples/window/main_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ package main
import (
"runtime"

"github.com/ebitengine/purego"
"github.com/ebitengine/purego/objc"
"github.com/jwijenbergh/purego"
"github.com/jwijenbergh/purego/objc"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/window/main_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"golang.org/x/sys/windows"

"github.com/ebitengine/purego"
"github.com/jwijenbergh/purego"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion internal/buildtest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
package main

import (
_ "github.com/ebitengine/purego"
_ "github.com/jwijenbergh/purego"
)

import "C"
Expand Down
2 changes: 1 addition & 1 deletion internal/load/load_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

package load

import "github.com/ebitengine/purego"
import "github.com/jwijenbergh/purego"

func OpenLibrary(name string) (uintptr, error) {
return purego.Dlopen(name, purego.RTLD_NOW|purego.RTLD_GLOBAL)
Expand Down
2 changes: 1 addition & 1 deletion struct_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"unsafe"

"github.com/ebitengine/purego"
"github.com/jwijenbergh/purego"
)

func TestRegisterFunc_structArgs(t *testing.T) {
Expand Down

0 comments on commit a81d4e8

Please sign in to comment.