sysdll
packagestandard libraryThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Overview¶
Package sysdll is an internal leaf package that records and reportswhich Windows DLL names are used by Go itself. These DLLs are thenonly loaded from the System32 directory. See Issue 14959.
Index¶
Constants¶
This section is empty.
Variables¶
var IsSystemDLL = map[string]bool{}
IsSystemDLL reports whether the named dll key (a base name, like"foo.dll") is a system DLL which should only be loaded from theWindows SYSTEM32 directory.
Filenames are case sensitive, but that doesn't matter becausethe case registered with Add is also the same case used withLoadDLL later.
It has no associated mutex and should only be mutated serially(currently: during init), and not concurrent with DLL loading.
Functions¶
Types¶
This section is empty.