We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128551e commit 5ad9415Copy full SHA for 5ad9415
dlfcn.go
@@ -35,8 +35,8 @@ func init() {
35
// Dlopen calls should be balanced with a Dlclose call.
36
//
37
// This function is not available on Windows.
38
-// Use [golang.org/x/sys/windows.LoadLibrary], [golang.org/x/sys/windows.NewLazyDLL], or
39
-// [golang.org/x/sys/windows.NewLazySystemDLL] for Windows instead.
+// Use [golang.org/x/sys/windows.LoadLibrary], [golang.org/x/sys/windows.LoadLibraryEx],
+// [golang.org/x/sys/windows.NewLazyDLL], or [golang.org/x/sys/windows.NewLazySystemDLL] for Windows instead.
40
func Dlopen(path string, mode int) (uintptr, error) {
41
u := fnDlopen(path, mode)
42
if u == 0 {
0 commit comments