import "golang.org/x/sys/windows"
        
Package windows contains an interface to the low-level operating system primitives. OS details vary depending on the underlying system, and by default, godoc will display the OS-specific documentation for the current system. If you want godoc to display syscall documentation for another system, set $GOOS and $GOARCH to the desired system. For example, if you want to view documentation for freebsd/arm on linux/amd64, set $GOOS to freebsd and $GOARCH to arm. The primary use of this package is inside other packages that provide a more portable interface to the system, such as "os", "time" and "net". Use those packages rather than this one if you can. For details of the functions and data types in this package consult the manuals for the appropriate operating system. These calls return err == nil to indicate success; otherwise err represents an operating system error describing the failure and holds a value of type syscall.Errno.
dll_windows.go env_unset.go env_windows.go eventlog.go exec_windows.go race0.go security_windows.go service.go str.go syscall.go syscall_windows.go zsyscall_windows.go ztypes_windows.go ztypes_windows_amd64.go
const (
    EVENTLOG_SUCCESS          = 0
    EVENTLOG_ERROR_TYPE       = 1
    EVENTLOG_WARNING_TYPE     = 2
    EVENTLOG_INFORMATION_TYPE = 4
    EVENTLOG_AUDIT_SUCCESS    = 8
    EVENTLOG_AUDIT_FAILURE    = 16
)const (
    STANDARD_RIGHTS_REQUIRED = 0xf0000
    STANDARD_RIGHTS_READ     = 0x20000
    STANDARD_RIGHTS_WRITE    = 0x20000
    STANDARD_RIGHTS_EXECUTE  = 0x20000
    STANDARD_RIGHTS_ALL      = 0x1F0000
)const (
    NameUnknown          = 0
    NameFullyQualifiedDN = 1
    NameSamCompatible    = 2
    NameDisplay          = 3
    NameUniqueId         = 6
    NameCanonical        = 7
    NameUserPrincipal    = 8
    NameCanonicalEx      = 9
    NameServicePrincipal = 10
    NameDnsDomain        = 12
)const (
    // do not reorder
    NetSetupUnknownStatus = iota
    NetSetupUnjoined
    NetSetupWorkgroupName
    NetSetupDomainName
)const (
    // do not reorder
    SidTypeUser = 1 + iota
    SidTypeGroup
    SidTypeDomain
    SidTypeAlias
    SidTypeWellKnownGroup
    SidTypeDeletedAccount
    SidTypeInvalid
    SidTypeUnknown
    SidTypeComputer
    SidTypeLabel
)const (
    SECURITY_NULL_RID                   = 0
    SECURITY_WORLD_RID                  = 0
    SECURITY_LOCAL_RID                  = 0
    SECURITY_CREATOR_OWNER_RID          = 0
    SECURITY_CREATOR_GROUP_RID          = 1
    SECURITY_DIALUP_RID                 = 1
    SECURITY_NETWORK_RID                = 2
    SECURITY_BATCH_RID                  = 3
    SECURITY_INTERACTIVE_RID            = 4
    SECURITY_LOGON_IDS_RID              = 5
    SECURITY_SERVICE_RID                = 6
    SECURITY_LOCAL_SYSTEM_RID           = 18
    SECURITY_BUILTIN_DOMAIN_RID         = 32
    SECURITY_PRINCIPAL_SELF_RID         = 10
    SECURITY_CREATOR_OWNER_SERVER_RID   = 0x2
    SECURITY_CREATOR_GROUP_SERVER_RID   = 0x3
    SECURITY_LOGON_IDS_RID_COUNT        = 0x3
    SECURITY_ANONYMOUS_LOGON_RID        = 0x7
    SECURITY_PROXY_RID                  = 0x8
    SECURITY_ENTERPRISE_CONTROLLERS_RID = 0x9
    SECURITY_SERVER_LOGON_RID           = SECURITY_ENTERPRISE_CONTROLLERS_RID
    SECURITY_AUTHENTICATED_USER_RID     = 0xb
    SECURITY_RESTRICTED_CODE_RID        = 0xc
    SECURITY_NT_NON_UNIQUE_RID          = 0x15
)const (
    // do not reorder
    TOKEN_ASSIGN_PRIMARY = 1 << iota
    TOKEN_DUPLICATE
    TOKEN_IMPERSONATE
    TOKEN_QUERY
    TOKEN_QUERY_SOURCE
    TOKEN_ADJUST_PRIVILEGES
    TOKEN_ADJUST_GROUPS
    TOKEN_ADJUST_DEFAULT
    TOKEN_ALL_ACCESS = STANDARD_RIGHTS_REQUIRED |
        TOKEN_ASSIGN_PRIMARY |
        TOKEN_DUPLICATE |
        TOKEN_IMPERSONATE |
        TOKEN_QUERY |
        TOKEN_QUERY_SOURCE |
        TOKEN_ADJUST_PRIVILEGES |
        TOKEN_ADJUST_GROUPS |
        TOKEN_ADJUST_DEFAULT
    TOKEN_READ  = STANDARD_RIGHTS_READ | TOKEN_QUERY
    TOKEN_WRITE = STANDARD_RIGHTS_WRITE |
        TOKEN_ADJUST_PRIVILEGES |
        TOKEN_ADJUST_GROUPS |
        TOKEN_ADJUST_DEFAULT
    TOKEN_EXECUTE = STANDARD_RIGHTS_EXECUTE
)const (
    // do not reorder
    TokenUser = 1 + iota
    TokenGroups
    TokenPrivileges
    TokenOwner
    TokenPrimaryGroup
    TokenDefaultDacl
    TokenSource
    TokenType
    TokenImpersonationLevel
    TokenStatistics
    TokenRestrictedSids
    TokenSessionId
    TokenGroupsAndPrivileges
    TokenSessionReference
    TokenSandBoxInert
    TokenAuditPolicy
    TokenOrigin
    TokenElevationType
    TokenLinkedToken
    TokenElevation
    TokenHasRestrictions
    TokenAccessInformation
    TokenVirtualizationAllowed
    TokenVirtualizationEnabled
    TokenIntegrityLevel
    TokenUIAccess
    TokenMandatoryPolicy
    TokenLogonSid
    MaxTokenInfoClass
)const (
    SC_MANAGER_CONNECT            = 1
    SC_MANAGER_CREATE_SERVICE     = 2
    SC_MANAGER_ENUMERATE_SERVICE  = 4
    SC_MANAGER_LOCK               = 8
    SC_MANAGER_QUERY_LOCK_STATUS  = 16
    SC_MANAGER_MODIFY_BOOT_CONFIG = 32
    SC_MANAGER_ALL_ACCESS         = 0xf003f
)const (
    SERVICE_KERNEL_DRIVER       = 1
    SERVICE_FILE_SYSTEM_DRIVER  = 2
    SERVICE_ADAPTER             = 4
    SERVICE_RECOGNIZER_DRIVER   = 8
    SERVICE_WIN32_OWN_PROCESS   = 16
    SERVICE_WIN32_SHARE_PROCESS = 32
    SERVICE_WIN32               = SERVICE_WIN32_OWN_PROCESS | SERVICE_WIN32_SHARE_PROCESS
    SERVICE_INTERACTIVE_PROCESS = 256
    SERVICE_DRIVER              = SERVICE_KERNEL_DRIVER | SERVICE_FILE_SYSTEM_DRIVER | SERVICE_RECOGNIZER_DRIVER
    SERVICE_TYPE_ALL            = SERVICE_WIN32 | SERVICE_ADAPTER | SERVICE_DRIVER | SERVICE_INTERACTIVE_PROCESS
    SERVICE_BOOT_START   = 0
    SERVICE_SYSTEM_START = 1
    SERVICE_AUTO_START   = 2
    SERVICE_DEMAND_START = 3
    SERVICE_DISABLED     = 4
    SERVICE_ERROR_IGNORE   = 0
    SERVICE_ERROR_NORMAL   = 1
    SERVICE_ERROR_SEVERE   = 2
    SERVICE_ERROR_CRITICAL = 3
    SC_STATUS_PROCESS_INFO = 0
    SERVICE_STOPPED          = 1
    SERVICE_START_PENDING    = 2
    SERVICE_STOP_PENDING     = 3
    SERVICE_RUNNING          = 4
    SERVICE_CONTINUE_PENDING = 5
    SERVICE_PAUSE_PENDING    = 6
    SERVICE_PAUSED           = 7
    SERVICE_NO_CHANGE        = 0xffffffff
    SERVICE_ACCEPT_STOP                  = 1
    SERVICE_ACCEPT_PAUSE_CONTINUE        = 2
    SERVICE_ACCEPT_SHUTDOWN              = 4
    SERVICE_ACCEPT_PARAMCHANGE           = 8
    SERVICE_ACCEPT_NETBINDCHANGE         = 16
    SERVICE_ACCEPT_HARDWAREPROFILECHANGE = 32
    SERVICE_ACCEPT_POWEREVENT            = 64
    SERVICE_ACCEPT_SESSIONCHANGE         = 128
    SERVICE_CONTROL_STOP                  = 1
    SERVICE_CONTROL_PAUSE                 = 2
    SERVICE_CONTROL_CONTINUE              = 3
    SERVICE_CONTROL_INTERROGATE           = 4
    SERVICE_CONTROL_SHUTDOWN              = 5
    SERVICE_CONTROL_PARAMCHANGE           = 6
    SERVICE_CONTROL_NETBINDADD            = 7
    SERVICE_CONTROL_NETBINDREMOVE         = 8
    SERVICE_CONTROL_NETBINDENABLE         = 9
    SERVICE_CONTROL_NETBINDDISABLE        = 10
    SERVICE_CONTROL_DEVICEEVENT           = 11
    SERVICE_CONTROL_HARDWAREPROFILECHANGE = 12
    SERVICE_CONTROL_POWEREVENT            = 13
    SERVICE_CONTROL_SESSIONCHANGE         = 14
    SERVICE_ACTIVE    = 1
    SERVICE_INACTIVE  = 2
    SERVICE_STATE_ALL = 3
    SERVICE_QUERY_CONFIG           = 1
    SERVICE_CHANGE_CONFIG          = 2
    SERVICE_QUERY_STATUS           = 4
    SERVICE_ENUMERATE_DEPENDENTS   = 8
    SERVICE_START                  = 16
    SERVICE_STOP                   = 32
    SERVICE_PAUSE_CONTINUE         = 64
    SERVICE_INTERROGATE            = 128
    SERVICE_USER_DEFINED_CONTROL   = 256
    SERVICE_ALL_ACCESS             = STANDARD_RIGHTS_REQUIRED | SERVICE_QUERY_CONFIG | SERVICE_CHANGE_CONFIG | SERVICE_QUERY_STATUS | SERVICE_ENUMERATE_DEPENDENTS | SERVICE_START | SERVICE_STOP | SERVICE_PAUSE_CONTINUE | SERVICE_INTERROGATE | SERVICE_USER_DEFINED_CONTROL
    SERVICE_RUNS_IN_SYSTEM_PROCESS = 1
    SERVICE_CONFIG_DESCRIPTION     = 1
    SERVICE_CONFIG_FAILURE_ACTIONS = 2
    NO_ERROR = 0
)const (
    // Windows errors.
    ERROR_FILE_NOT_FOUND         syscall.Errno = 2
    ERROR_PATH_NOT_FOUND         syscall.Errno = 3
    ERROR_ACCESS_DENIED          syscall.Errno = 5
    ERROR_NO_MORE_FILES          syscall.Errno = 18
    ERROR_HANDLE_EOF             syscall.Errno = 38
    ERROR_NETNAME_DELETED        syscall.Errno = 64
    ERROR_FILE_EXISTS            syscall.Errno = 80
    ERROR_BROKEN_PIPE            syscall.Errno = 109
    ERROR_BUFFER_OVERFLOW        syscall.Errno = 111
    ERROR_INSUFFICIENT_BUFFER    syscall.Errno = 122
    ERROR_MOD_NOT_FOUND          syscall.Errno = 126
    ERROR_PROC_NOT_FOUND         syscall.Errno = 127
    ERROR_ALREADY_EXISTS         syscall.Errno = 183
    ERROR_ENVVAR_NOT_FOUND       syscall.Errno = 203
    ERROR_MORE_DATA              syscall.Errno = 234
    ERROR_OPERATION_ABORTED      syscall.Errno = 995
    ERROR_IO_PENDING             syscall.Errno = 997
    ERROR_SERVICE_SPECIFIC_ERROR syscall.Errno = 1066
    ERROR_NOT_FOUND              syscall.Errno = 1168
    ERROR_PRIVILEGE_NOT_HELD     syscall.Errno = 1314
    WSAEACCES                    syscall.Errno = 10013
    WSAECONNRESET                syscall.Errno = 10054
)const (
    // Invented values to support what package os expects.
    O_RDONLY   = 0x00000
    O_WRONLY   = 0x00001
    O_RDWR     = 0x00002
    O_CREAT    = 0x00040
    O_EXCL     = 0x00080
    O_NOCTTY   = 0x00100
    O_TRUNC    = 0x00200
    O_NONBLOCK = 0x00800
    O_APPEND   = 0x00400
    O_SYNC     = 0x01000
    O_ASYNC    = 0x02000
    O_CLOEXEC  = 0x80000
)const (
    // More invented values for signals
    SIGHUP  = Signal(0x1)
    SIGINT  = Signal(0x2)
    SIGQUIT = Signal(0x3)
    SIGILL  = Signal(0x4)
    SIGTRAP = Signal(0x5)
    SIGABRT = Signal(0x6)
    SIGBUS  = Signal(0x7)
    SIGFPE  = Signal(0x8)
    SIGKILL = Signal(0x9)
    SIGSEGV = Signal(0xb)
    SIGPIPE = Signal(0xd)
    SIGALRM = Signal(0xe)
    SIGTERM = Signal(0xf)
)const (
    GENERIC_READ    = 0x80000000
    GENERIC_WRITE   = 0x40000000
    GENERIC_EXECUTE = 0x20000000
    GENERIC_ALL     = 0x10000000
    FILE_LIST_DIRECTORY   = 0x00000001
    FILE_APPEND_DATA      = 0x00000004
    FILE_WRITE_ATTRIBUTES = 0x00000100
    FILE_SHARE_READ              = 0x00000001
    FILE_SHARE_WRITE             = 0x00000002
    FILE_SHARE_DELETE            = 0x00000004
    FILE_ATTRIBUTE_READONLY      = 0x00000001
    FILE_ATTRIBUTE_HIDDEN        = 0x00000002
    FILE_ATTRIBUTE_SYSTEM        = 0x00000004
    FILE_ATTRIBUTE_DIRECTORY     = 0x00000010
    FILE_ATTRIBUTE_ARCHIVE       = 0x00000020
    FILE_ATTRIBUTE_NORMAL        = 0x00000080
    FILE_ATTRIBUTE_REPARSE_POINT = 0x00000400
    INVALID_FILE_ATTRIBUTES = 0xffffffff
    CREATE_NEW        = 1
    CREATE_ALWAYS     = 2
    OPEN_EXISTING     = 3
    OPEN_ALWAYS       = 4
    TRUNCATE_EXISTING = 5
    FILE_FLAG_OPEN_REPARSE_POINT = 0x00200000
    FILE_FLAG_BACKUP_SEMANTICS   = 0x02000000
    FILE_FLAG_OVERLAPPED         = 0x40000000
    HANDLE_FLAG_INHERIT    = 0x00000001
    STARTF_USESTDHANDLES   = 0x00000100
    STARTF_USESHOWWINDOW   = 0x00000001
    DUPLICATE_CLOSE_SOURCE = 0x00000001
    DUPLICATE_SAME_ACCESS  = 0x00000002
    STD_INPUT_HANDLE  = -10
    STD_OUTPUT_HANDLE = -11
    STD_ERROR_HANDLE  = -12
    FILE_BEGIN   = 0
    FILE_CURRENT = 1
    FILE_END     = 2
    LANG_ENGLISH       = 0x09
    SUBLANG_ENGLISH_US = 0x01
    FORMAT_MESSAGE_ALLOCATE_BUFFER = 256
    FORMAT_MESSAGE_IGNORE_INSERTS  = 512
    FORMAT_MESSAGE_FROM_STRING     = 1024
    FORMAT_MESSAGE_FROM_HMODULE    = 2048
    FORMAT_MESSAGE_FROM_SYSTEM     = 4096
    FORMAT_MESSAGE_ARGUMENT_ARRAY  = 8192
    FORMAT_MESSAGE_MAX_WIDTH_MASK  = 255
    MAX_PATH      = 260
    MAX_LONG_PATH = 32768
    MAX_COMPUTERNAME_LENGTH = 15
    TIME_ZONE_ID_UNKNOWN  = 0
    TIME_ZONE_ID_STANDARD = 1
    TIME_ZONE_ID_DAYLIGHT = 2
    IGNORE                = 0
    INFINITE              = 0xffffffff
    WAIT_TIMEOUT   = 258
    WAIT_ABANDONED = 0x00000080
    WAIT_OBJECT_0  = 0x00000000
    WAIT_FAILED    = 0xFFFFFFFF
    CREATE_NEW_PROCESS_GROUP   = 0x00000200
    CREATE_UNICODE_ENVIRONMENT = 0x00000400
    PROCESS_TERMINATE         = 1
    PROCESS_QUERY_INFORMATION = 0x00000400
    SYNCHRONIZE               = 0x00100000
    PAGE_READONLY          = 0x02
    PAGE_READWRITE         = 0x04
    PAGE_WRITECOPY         = 0x08
    PAGE_EXECUTE_READ      = 0x20
    PAGE_EXECUTE_READWRITE = 0x40
    PAGE_EXECUTE_WRITECOPY = 0x80
    FILE_MAP_COPY    = 0x01
    FILE_MAP_WRITE   = 0x02
    FILE_MAP_READ    = 0x04
    FILE_MAP_EXECUTE = 0x20
    CTRL_C_EVENT     = 0
    CTRL_BREAK_EVENT = 1
    // Windows reserves errors >= 1<<29 for application use.
    APPLICATION_ERROR = 1 << 29
)const (
    // flags for CreateToolhelp32Snapshot
    TH32CS_SNAPHEAPLIST = 0x01
    TH32CS_SNAPPROCESS  = 0x02
    TH32CS_SNAPTHREAD   = 0x04
    TH32CS_SNAPMODULE   = 0x08
    TH32CS_SNAPMODULE32 = 0x10
    TH32CS_SNAPALL      = TH32CS_SNAPHEAPLIST | TH32CS_SNAPMODULE | TH32CS_SNAPPROCESS | TH32CS_SNAPTHREAD
    TH32CS_INHERIT      = 0x80000000
)const (
    // filters for ReadDirectoryChangesW
    FILE_NOTIFY_CHANGE_FILE_NAME   = 0x001
    FILE_NOTIFY_CHANGE_DIR_NAME    = 0x002
    FILE_NOTIFY_CHANGE_ATTRIBUTES  = 0x004
    FILE_NOTIFY_CHANGE_SIZE        = 0x008
    FILE_NOTIFY_CHANGE_LAST_WRITE  = 0x010
    FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x020
    FILE_NOTIFY_CHANGE_CREATION    = 0x040
    FILE_NOTIFY_CHANGE_SECURITY    = 0x100
)const (
    // do not reorder
    FILE_ACTION_ADDED = iota + 1
    FILE_ACTION_REMOVED
    FILE_ACTION_MODIFIED
    FILE_ACTION_RENAMED_OLD_NAME
    FILE_ACTION_RENAMED_NEW_NAME
)const (
    // wincrypt.h
    PROV_RSA_FULL                    = 1
    PROV_RSA_SIG                     = 2
    PROV_DSS                         = 3
    PROV_FORTEZZA                    = 4
    PROV_MS_EXCHANGE                 = 5
    PROV_SSL                         = 6
    PROV_RSA_SCHANNEL                = 12
    PROV_DSS_DH                      = 13
    PROV_EC_ECDSA_SIG                = 14
    PROV_EC_ECNRA_SIG                = 15
    PROV_EC_ECDSA_FULL               = 16
    PROV_EC_ECNRA_FULL               = 17
    PROV_DH_SCHANNEL                 = 18
    PROV_SPYRUS_LYNKS                = 20
    PROV_RNG                         = 21
    PROV_INTEL_SEC                   = 22
    PROV_REPLACE_OWF                 = 23
    PROV_RSA_AES                     = 24
    CRYPT_VERIFYCONTEXT              = 0xF0000000
    CRYPT_NEWKEYSET                  = 0x00000008
    CRYPT_DELETEKEYSET               = 0x00000010
    CRYPT_MACHINE_KEYSET             = 0x00000020
    CRYPT_SILENT                     = 0x00000040
    CRYPT_DEFAULT_CONTAINER_OPTIONAL = 0x00000080
    USAGE_MATCH_TYPE_AND = 0
    USAGE_MATCH_TYPE_OR  = 1
    X509_ASN_ENCODING   = 0x00000001
    PKCS_7_ASN_ENCODING = 0x00010000
    CERT_STORE_PROV_MEMORY = 2
    CERT_STORE_ADD_ALWAYS = 4
    CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 0x00000004
    CERT_TRUST_NO_ERROR                          = 0x00000000
    CERT_TRUST_IS_NOT_TIME_VALID                 = 0x00000001
    CERT_TRUST_IS_REVOKED                        = 0x00000004
    CERT_TRUST_IS_NOT_SIGNATURE_VALID            = 0x00000008
    CERT_TRUST_IS_NOT_VALID_FOR_USAGE            = 0x00000010
    CERT_TRUST_IS_UNTRUSTED_ROOT                 = 0x00000020
    CERT_TRUST_REVOCATION_STATUS_UNKNOWN         = 0x00000040
    CERT_TRUST_IS_CYCLIC                         = 0x00000080
    CERT_TRUST_INVALID_EXTENSION                 = 0x00000100
    CERT_TRUST_INVALID_POLICY_CONSTRAINTS        = 0x00000200
    CERT_TRUST_INVALID_BASIC_CONSTRAINTS         = 0x00000400
    CERT_TRUST_INVALID_NAME_CONSTRAINTS          = 0x00000800
    CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT = 0x00001000
    CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT   = 0x00002000
    CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT = 0x00004000
    CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT      = 0x00008000
    CERT_TRUST_IS_OFFLINE_REVOCATION             = 0x01000000
    CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY          = 0x02000000
    CERT_TRUST_IS_EXPLICIT_DISTRUST              = 0x04000000
    CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT    = 0x08000000
    CERT_CHAIN_POLICY_BASE              = 1
    CERT_CHAIN_POLICY_AUTHENTICODE      = 2
    CERT_CHAIN_POLICY_AUTHENTICODE_TS   = 3
    CERT_CHAIN_POLICY_SSL               = 4
    CERT_CHAIN_POLICY_BASIC_CONSTRAINTS = 5
    CERT_CHAIN_POLICY_NT_AUTH           = 6
    CERT_CHAIN_POLICY_MICROSOFT_ROOT    = 7
    CERT_CHAIN_POLICY_EV                = 8
    CERT_E_EXPIRED       = 0x800B0101
    CERT_E_ROLE          = 0x800B0103
    CERT_E_PURPOSE       = 0x800B0106
    CERT_E_UNTRUSTEDROOT = 0x800B0109
    CERT_E_CN_NO_MATCH   = 0x800B010F
    AUTHTYPE_CLIENT = 1
    AUTHTYPE_SERVER = 2
)const (
    GetFileExInfoStandard = 0
    GetFileExMaxInfoLevel = 1
)const (
    // winuser.h
    SW_HIDE            = 0
    SW_NORMAL          = 1
    SW_SHOWNORMAL      = 1
    SW_SHOWMINIMIZED   = 2
    SW_SHOWMAXIMIZED   = 3
    SW_MAXIMIZE        = 3
    SW_SHOWNOACTIVATE  = 4
    SW_SHOW            = 5
    SW_MINIMIZE        = 6
    SW_SHOWMINNOACTIVE = 7
    SW_SHOWNA          = 8
    SW_RESTORE         = 9
    SW_SHOWDEFAULT     = 10
    SW_FORCEMINIMIZE   = 11
)ShowWindow constants
const (
    AF_UNSPEC  = 0
    AF_UNIX    = 1
    AF_INET    = 2
    AF_INET6   = 23
    AF_NETBIOS = 17
    SOCK_STREAM    = 1
    SOCK_DGRAM     = 2
    SOCK_RAW       = 3
    SOCK_SEQPACKET = 5
    IPPROTO_IP   = 0
    IPPROTO_IPV6 = 0x29
    IPPROTO_TCP  = 6
    IPPROTO_UDP  = 17
    SOL_SOCKET                = 0xffff
    SO_REUSEADDR              = 4
    SO_KEEPALIVE              = 8
    SO_DONTROUTE              = 16
    SO_BROADCAST              = 32
    SO_LINGER                 = 128
    SO_RCVBUF                 = 0x1002
    SO_SNDBUF                 = 0x1001
    SO_UPDATE_ACCEPT_CONTEXT  = 0x700b
    SO_UPDATE_CONNECT_CONTEXT = 0x7010
    IOC_OUT                            = 0x40000000
    IOC_IN                             = 0x80000000
    IOC_VENDOR                         = 0x18000000
    IOC_INOUT                          = IOC_IN | IOC_OUT
    IOC_WS2                            = 0x08000000
    SIO_GET_EXTENSION_FUNCTION_POINTER = IOC_INOUT | IOC_WS2 | 6
    SIO_KEEPALIVE_VALS                 = IOC_IN | IOC_VENDOR | 4
    SIO_UDP_CONNRESET                  = IOC_IN | IOC_VENDOR | 12
    IP_TOS             = 0x3
    IP_TTL             = 0x4
    IP_MULTICAST_IF    = 0x9
    IP_MULTICAST_TTL   = 0xa
    IP_MULTICAST_LOOP  = 0xb
    IP_ADD_MEMBERSHIP  = 0xc
    IP_DROP_MEMBERSHIP = 0xd
    IPV6_V6ONLY         = 0x1b
    IPV6_UNICAST_HOPS   = 0x4
    IPV6_MULTICAST_IF   = 0x9
    IPV6_MULTICAST_HOPS = 0xa
    IPV6_MULTICAST_LOOP = 0xb
    IPV6_JOIN_GROUP     = 0xc
    IPV6_LEAVE_GROUP    = 0xd
    SOMAXCONN = 0x7fffffff
    TCP_NODELAY = 1
    SHUT_RD   = 0
    SHUT_WR   = 1
    SHUT_RDWR = 2
    WSADESCRIPTION_LEN = 256
    WSASYS_STATUS_LEN  = 128
)const (
    S_IFMT   = 0x1f000
    S_IFIFO  = 0x1000
    S_IFCHR  = 0x2000
    S_IFDIR  = 0x4000
    S_IFBLK  = 0x6000
    S_IFREG  = 0x8000
    S_IFLNK  = 0xa000
    S_IFSOCK = 0xc000
    S_ISUID  = 0x800
    S_ISGID  = 0x400
    S_ISVTX  = 0x200
    S_IRUSR  = 0x100
    S_IWRITE = 0x80
    S_IWUSR  = 0x80
    S_IXUSR  = 0x40
)Invented values to support what package os expects.
const (
    FILE_TYPE_CHAR    = 0x0002
    FILE_TYPE_DISK    = 0x0001
    FILE_TYPE_PIPE    = 0x0003
    FILE_TYPE_REMOTE  = 0x8000
    FILE_TYPE_UNKNOWN = 0x0000
)const (
    DNS_TYPE_A       = 0x0001
    DNS_TYPE_NS      = 0x0002
    DNS_TYPE_MD      = 0x0003
    DNS_TYPE_MF      = 0x0004
    DNS_TYPE_CNAME   = 0x0005
    DNS_TYPE_SOA     = 0x0006
    DNS_TYPE_MB      = 0x0007
    DNS_TYPE_MG      = 0x0008
    DNS_TYPE_MR      = 0x0009
    DNS_TYPE_NULL    = 0x000a
    DNS_TYPE_WKS     = 0x000b
    DNS_TYPE_PTR     = 0x000c
    DNS_TYPE_HINFO   = 0x000d
    DNS_TYPE_MINFO   = 0x000e
    DNS_TYPE_MX      = 0x000f
    DNS_TYPE_TEXT    = 0x0010
    DNS_TYPE_RP      = 0x0011
    DNS_TYPE_AFSDB   = 0x0012
    DNS_TYPE_X25     = 0x0013
    DNS_TYPE_ISDN    = 0x0014
    DNS_TYPE_RT      = 0x0015
    DNS_TYPE_NSAP    = 0x0016
    DNS_TYPE_NSAPPTR = 0x0017
    DNS_TYPE_SIG     = 0x0018
    DNS_TYPE_KEY     = 0x0019
    DNS_TYPE_PX      = 0x001a
    DNS_TYPE_GPOS    = 0x001b
    DNS_TYPE_AAAA    = 0x001c
    DNS_TYPE_LOC     = 0x001d
    DNS_TYPE_NXT     = 0x001e
    DNS_TYPE_EID     = 0x001f
    DNS_TYPE_NIMLOC  = 0x0020
    DNS_TYPE_SRV     = 0x0021
    DNS_TYPE_ATMA    = 0x0022
    DNS_TYPE_NAPTR   = 0x0023
    DNS_TYPE_KX      = 0x0024
    DNS_TYPE_CERT    = 0x0025
    DNS_TYPE_A6      = 0x0026
    DNS_TYPE_DNAME   = 0x0027
    DNS_TYPE_SINK    = 0x0028
    DNS_TYPE_OPT     = 0x0029
    DNS_TYPE_DS      = 0x002B
    DNS_TYPE_RRSIG   = 0x002E
    DNS_TYPE_NSEC    = 0x002F
    DNS_TYPE_DNSKEY  = 0x0030
    DNS_TYPE_DHCID   = 0x0031
    DNS_TYPE_UINFO   = 0x0064
    DNS_TYPE_UID     = 0x0065
    DNS_TYPE_GID     = 0x0066
    DNS_TYPE_UNSPEC  = 0x0067
    DNS_TYPE_ADDRS   = 0x00f8
    DNS_TYPE_TKEY    = 0x00f9
    DNS_TYPE_TSIG    = 0x00fa
    DNS_TYPE_IXFR    = 0x00fb
    DNS_TYPE_AXFR    = 0x00fc
    DNS_TYPE_MAILB   = 0x00fd
    DNS_TYPE_MAILA   = 0x00fe
    DNS_TYPE_ALL     = 0x00ff
    DNS_TYPE_ANY     = 0x00ff
    DNS_TYPE_WINS    = 0xff01
    DNS_TYPE_WINSR   = 0xff02
    DNS_TYPE_NBSTAT  = 0xff01
)const (
    // flags inside DNSRecord.Dw
    DnsSectionQuestion   = 0x0000
    DnsSectionAnswer     = 0x0001
    DnsSectionAuthority  = 0x0002
    DnsSectionAdditional = 0x0003
)const (
    TF_DISCONNECT         = 1
    TF_REUSE_SOCKET       = 2
    TF_WRITE_BEHIND       = 4
    TF_USE_DEFAULT_WORKER = 0
    TF_USE_SYSTEM_THREAD  = 16
    TF_USE_KERNEL_APC     = 32
)const (
    IFF_UP           = 1
    IFF_BROADCAST    = 2
    IFF_LOOPBACK     = 4
    IFF_POINTTOPOINT = 8
    IFF_MULTICAST    = 16
)const (
    // do not reorder
    HKEY_CLASSES_ROOT = 0x80000000 + iota
    HKEY_CURRENT_USER
    HKEY_LOCAL_MACHINE
    HKEY_USERS
    HKEY_PERFORMANCE_DATA
    HKEY_CURRENT_CONFIG
    HKEY_DYN_DATA
    KEY_QUERY_VALUE        = 1
    KEY_SET_VALUE          = 2
    KEY_CREATE_SUB_KEY     = 4
    KEY_ENUMERATE_SUB_KEYS = 8
    KEY_NOTIFY             = 16
    KEY_CREATE_LINK        = 32
    KEY_WRITE              = 0x20006
    KEY_EXECUTE            = 0x20019
    KEY_READ               = 0x20019
    KEY_WOW64_64KEY        = 0x0100
    KEY_WOW64_32KEY        = 0x0200
    KEY_ALL_ACCESS         = 0xf003f
)const (
    // do not reorder
    REG_NONE = iota
    REG_SZ
    REG_EXPAND_SZ
    REG_BINARY
    REG_DWORD_LITTLE_ENDIAN
    REG_DWORD_BIG_ENDIAN
    REG_LINK
    REG_MULTI_SZ
    REG_RESOURCE_LIST
    REG_FULL_RESOURCE_DESCRIPTOR
    REG_RESOURCE_REQUIREMENTS_LIST
    REG_QWORD_LITTLE_ENDIAN
    REG_DWORD = REG_DWORD_LITTLE_ENDIAN
    REG_QWORD = REG_QWORD_LITTLE_ENDIAN
)const (
    AI_PASSIVE     = 1
    AI_CANONNAME   = 2
    AI_NUMERICHOST = 4
)const (
    FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1
    FILE_SKIP_SET_EVENT_ON_HANDLE        = 2
)const (
    WSAPROTOCOL_LEN    = 255
    MAX_PROTOCOL_CHAIN = 7
    BASE_PROTOCOL      = 1
    LAYERED_PROTOCOL   = 0
    XP1_CONNECTIONLESS           = 0x00000001
    XP1_GUARANTEED_DELIVERY      = 0x00000002
    XP1_GUARANTEED_ORDER         = 0x00000004
    XP1_MESSAGE_ORIENTED         = 0x00000008
    XP1_PSEUDO_STREAM            = 0x00000010
    XP1_GRACEFUL_CLOSE           = 0x00000020
    XP1_EXPEDITED_DATA           = 0x00000040
    XP1_CONNECT_DATA             = 0x00000080
    XP1_DISCONNECT_DATA          = 0x00000100
    XP1_SUPPORT_BROADCAST        = 0x00000200
    XP1_SUPPORT_MULTIPOINT       = 0x00000400
    XP1_MULTIPOINT_CONTROL_PLANE = 0x00000800
    XP1_MULTIPOINT_DATA_PLANE    = 0x00001000
    XP1_QOS_SUPPORTED            = 0x00002000
    XP1_UNI_SEND                 = 0x00008000
    XP1_UNI_RECV                 = 0x00010000
    XP1_IFS_HANDLES              = 0x00020000
    XP1_PARTIAL_MESSAGE          = 0x00040000
    XP1_SAN_SUPPORT_SDP          = 0x00080000
    PFL_MULTIPLE_PROTO_ENTRIES  = 0x00000001
    PFL_RECOMMENDED_PROTO_ENTRY = 0x00000002
    PFL_HIDDEN                  = 0x00000004
    PFL_MATCHES_PROTOCOL_ZERO   = 0x00000008
    PFL_NETWORKDIRECT_PROVIDER  = 0x00000010
)const (
    FSCTL_GET_REPARSE_POINT          = 0x900A8
    MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16 * 1024
    IO_REPARSE_TAG_MOUNT_POINT       = 0xA0000003
    IO_REPARSE_TAG_SYMLINK           = 0xA000000C
    SYMBOLIC_LINK_FLAG_DIRECTORY     = 0x1
)const (
    ComputerNameNetBIOS                   = 0
    ComputerNameDnsHostname               = 1
    ComputerNameDnsDomain                 = 2
    ComputerNameDnsFullyQualified         = 3
    ComputerNamePhysicalNetBIOS           = 4
    ComputerNamePhysicalDnsHostname       = 5
    ComputerNamePhysicalDnsDomain         = 6
    ComputerNamePhysicalDnsFullyQualified = 7
    ComputerNameMax                       = 8
)const (
    MOVEFILE_REPLACE_EXISTING      = 0x1
    MOVEFILE_COPY_ALLOWED          = 0x2
    MOVEFILE_DELAY_UNTIL_REBOOT    = 0x4
    MOVEFILE_WRITE_THROUGH         = 0x8
    MOVEFILE_CREATE_HARDLINK       = 0x10
    MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x20
)const (
    IF_TYPE_OTHER              = 1
    IF_TYPE_ETHERNET_CSMACD    = 6
    IF_TYPE_ISO88025_TOKENRING = 9
    IF_TYPE_PPP                = 23
    IF_TYPE_SOFTWARE_LOOPBACK  = 24
    IF_TYPE_ATM                = 37
    IF_TYPE_IEEE80211          = 71
    IF_TYPE_TUNNEL             = 131
    IF_TYPE_IEEE1394           = 144
)const (
    IfOperStatusUp             = 1
    IfOperStatusDown           = 2
    IfOperStatusTesting        = 3
    IfOperStatusUnknown        = 4
    IfOperStatusDormant        = 5
    IfOperStatusNotPresent     = 6
    IfOperStatusLowerLayerDown = 7
)const (
    DNS_INFO_NO_RECORDS = 0x251D
)const GAA_FLAG_INCLUDE_PREFIX = 0x00000010const MAXLEN_IFDESCR = 256const MAXLEN_PHYSADDR = 8const MAX_ADAPTER_ADDRESS_LENGTH = 8const MAX_ADAPTER_DESCRIPTION_LENGTH = 128const MAX_ADAPTER_NAME_LENGTH = 256const MAX_INTERFACE_NAME_LEN = 256const SIO_GET_INTERFACE_LIST = 0x4004747Fvar (
    SECURITY_NULL_SID_AUTHORITY        = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 0}}
    SECURITY_WORLD_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 1}}
    SECURITY_LOCAL_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 2}}
    SECURITY_CREATOR_SID_AUTHORITY     = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 3}}
    SECURITY_NON_UNIQUE_AUTHORITY      = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 4}}
    SECURITY_NT_AUTHORITY              = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 5}}
    SECURITY_MANDATORY_LABEL_AUTHORITY = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 16}}
)var (
    Stdin  = getStdHandle(STD_INPUT_HANDLE)
    Stdout = getStdHandle(STD_OUTPUT_HANDLE)
    Stderr = getStdHandle(STD_ERROR_HANDLE)
)var (
    OID_PKIX_KP_SERVER_AUTH = []byte("1.3.6.1.5.5.7.3.1\x00")
    OID_SERVER_GATED_CRYPTO = []byte("1.3.6.1.4.1.311.10.3.3\x00")
    OID_SGC_NETSCAPE        = []byte("2.16.840.1.113730.4.1\x00")
)For testing: clients can set this flag to force creation of IPv6 sockets to return EAFNOSUPPORT.
var WSAID_CONNECTEX = GUID{ 0x25a207b9, 0xddf3, 0x4660, [8]byte{0x8e, 0xe9, 0x76, 0xe5, 0x8c, 0x74, 0x06, 0x3e}, }
func AcceptEx(ls Handle, as Handle, buf *byte, rxdatalen uint32, laddrlen uint32, raddrlen uint32, recvd *uint32, overlapped *Overlapped) (err error)
func AllocateAndInitializeSid(identAuth *SidIdentifierAuthority, subAuth byte, subAuth0 uint32, subAuth1 uint32, subAuth2 uint32, subAuth3 uint32, subAuth4 uint32, subAuth5 uint32, subAuth6 uint32, subAuth7 uint32, sid **SID) (err error)
BytePtrFromString returns a pointer to a NUL-terminated array of bytes containing the text of s. If s contains a NUL byte at any location, it returns (nil, syscall.EINVAL).
ByteSliceFromString returns a NUL-terminated slice of bytes containing the text of s. If s contains a NUL byte at any location, it returns (nil, syscall.EINVAL).
func CancelIoEx(s Handle, o *Overlapped) (err error)
func CertAddCertificateContextToStore(store Handle, certContext *CertContext, addDisposition uint32, storeContext **CertContext) (err error)
func CertFreeCertificateChain(ctx *CertChainContext)
func CertFreeCertificateContext(ctx *CertContext) (err error)
func CertGetCertificateChain(engine Handle, leaf *CertContext, time *Filetime, additionalStore Handle, para *CertChainPara, flags uint32, reserved uintptr, chainCtx **CertChainContext) (err error)
func CertVerifyCertificateChainPolicy(policyOID uintptr, chain *CertChainContext, para *CertChainPolicyPara, status *CertChainPolicyStatus) (err error)
func ChangeServiceConfig(service Handle, serviceType uint32, startType uint32, errorControl uint32, binaryPathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16, displayName *uint16) (err error)
func Clearenv()
func ConnectEx(fd Handle, sa Sockaddr, sendBuf *byte, sendDataLen uint32, bytesSent *uint32, overlapped *Overlapped) error
func ControlService(service Handle, control uint32, status *SERVICE_STATUS) (err error)
func CreateDirectory(path *uint16, sa *SecurityAttributes) (err error)
func CreatePipe(readhandle *Handle, writehandle *Handle, sa *SecurityAttributes, size uint32) (err error)
func CreateProcess(appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err error)
func CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error)
func DeviceIoControl(handle Handle, ioControlCode uint32, inBuffer *byte, inBufferSize uint32, outBuffer *byte, outBufferSize uint32, bytesReturned *uint32, overlapped *Overlapped) (err error)
func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error)
func DuplicateHandle(hSourceProcessHandle Handle, hSourceHandle Handle, hTargetProcessHandle Handle, lpTargetHandle *Handle, dwDesiredAccess uint32, bInheritHandle bool, dwOptions uint32) (err error)
EscapeArg rewrites command line argument s as prescribed in http://msdn.microsoft.com/en-us/library/ms880421. This function returns "" (2 double quotes) if s is empty. Alternatively, these transformations are done: - every back slash (\) is doubled, but only if immediately
followed by double quote (");
- every double quote (") is escaped by back slash (\); - finally, s is wrapped with double quotes (arg -> "arg"),
but only if there is space or tab inside s.
TODO(brainman): fix all needed for os
func FindNextFile(handle Handle, data *Win32finddata) (err error)
func FormatMessage(flags uint32, msgsrc uintptr, msgid uint32, langid uint32, buf []uint16, args *byte) (n uint32, err error)
FullPath retrieves the full path of the specified file.
func GetAcceptExSockaddrs(buf *byte, rxdatalen uint32, laddrlen uint32, raddrlen uint32, lrsa **RawSockaddrAny, lrsalen *int32, rrsa **RawSockaddrAny, rrsalen *int32)
func GetAdaptersAddresses(family uint32, flags uint32, reserved uintptr, adapterAddresses *IpAdapterAddresses, sizePointer *uint32) (errcode error)
func GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error)
func GetAddrInfoW(nodename *uint16, servicename *uint16, hints *AddrinfoW, result **AddrinfoW) (sockerr error)
func GetFileInformationByHandle(handle Handle, data *ByHandleFileInformation) (err error)
func GetFullPathName(path *uint16, buflen uint32, buf *uint16, fname **uint16) (n uint32, err error)
func GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error)
func GetQueuedCompletionStatus(cphandle Handle, qty *uint32, key *uint32, overlapped **Overlapped, timeout uint32) (err error)
func GetStartupInfo(startupInfo *StartupInfo) (err error)
func GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error)
func GetTokenInformation(t Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error)
func LookupAccountName(systemName *uint16, accountName *uint16, sid *SID, sidLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error)
func LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error)
func MapViewOfFile(handle Handle, access uint32, offsetHigh uint32, offsetLow uint32, length uintptr) (addr uintptr, err error)
func MultiByteToWideChar(codePage uint32, dwFlags uint32, str *byte, nstr int32, wchar *uint16, nwchar int32) (nwrite int32, err error)
Converts a Go function to a function pointer conforming to the stdcall or cdecl calling convention. This is useful when interoperating with Windows code requiring callbacks. Implemented in runtime/syscall_windows.goc
func PostQueuedCompletionStatus(cphandle Handle, qty uint32, key uint32, overlapped *Overlapped) (err error)
func Process32First(snapshot Handle, procEntry *ProcessEntry32) (err error)
func Process32Next(snapshot Handle, procEntry *ProcessEntry32) (err error)
func QueryServiceConfig(service Handle, serviceConfig *QUERY_SERVICE_CONFIG, bufSize uint32, bytesNeeded *uint32) (err error)
func QueryServiceConfig2(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error)
func QueryServiceStatus(service Handle, status *SERVICE_STATUS) (err error)
func ReadConsole(console Handle, buf *uint16, toread uint32, read *uint32, inputControl *byte) (err error)
func ReadDirectoryChanges(handle Handle, buf *byte, buflen uint32, watchSubTree bool, mask uint32, retlen *uint32, overlapped *Overlapped, completionRoutine uintptr) (err error)
Readlink returns the destination of the named symbolic link.
func RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error)
func RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error)
func RegQueryInfoKey(key Handle, class *uint16, classLen *uint32, reserved *uint32, subkeysLen *uint32, maxSubkeyLen *uint32, maxClassLen *uint32, valuesLen *uint32, maxValueNameLen *uint32, maxValueLen *uint32, saLen *uint32, lastWriteTime *Filetime) (regerrno error)
func RegQueryValueEx(key Handle, name *uint16, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error)
func ReportEvent(log Handle, etype uint16, category uint16, eventId uint32, usrSId uintptr, numStrings uint16, dataSize uint32, strings **uint16, rawData *byte) (err error)
func SetFilePointer(handle Handle, lowoffset int32, highoffsetptr *int32, whence uint32) (newlowoffset uint32, err error)
func SetServiceStatus(service Handle, serviceStatus *SERVICE_STATUS) (err error)
func StartServiceCtrlDispatcher(serviceTable *SERVICE_TABLE_ENTRY) (err error)
StringToUTF16 is deprecated. Use UTF16FromString instead. If s contains a NUL byte this function panics instead of returning an error.
StringToUTF16Ptr is deprecated. Use UTF16PtrFromString instead. If s contains a NUL byte this function panics instead of returning an error.
TranslateAccountName converts a directory service object name from one format to another.
func TranslateName(accName *uint16, accNameFormat uint32, desiredNameFormat uint32, translatedName *uint16, nSize *uint32) (err error)
func TransmitFile(s Handle, handle Handle, bytesToWrite uint32, bytsPerSend uint32, overlapped *Overlapped, transmitFileBuf *TransmitFileBuffers, flags uint32) (err error)
UTF16FromString returns the UTF-16 encoding of the UTF-8 string s, with a terminating NUL added. If s contains a NUL byte at any location, it returns (nil, syscall.EINVAL).
UTF16PtrFromString returns pointer to the UTF-16 encoding of the UTF-8 string s, with a terminating NUL added. If s contains a NUL byte at any location, it returns (nil, syscall.EINVAL).
UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s, with a terminating NUL removed.
func WSAEnumProtocols(protocols *int32, protocolBuffer *WSAProtocolInfo, bufferLength *uint32) (n int32, err error)
func WSAIoctl(s Handle, iocc uint32, inbuf *byte, cbif uint32, outbuf *byte, cbob uint32, cbbr *uint32, overlapped *Overlapped, completionRoutine uintptr) (err error)
func WSARecv(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, flags *uint32, overlapped *Overlapped, croutine *byte) (err error)
func WSARecvFrom(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, flags *uint32, from *RawSockaddrAny, fromlen *int32, overlapped *Overlapped, croutine *byte) (err error)
func WSASend(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, overlapped *Overlapped, croutine *byte) (err error)
func WSASendTo(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, to *RawSockaddrAny, tolen int32, overlapped *Overlapped, croutine *byte) (err error)
func WSASendto(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, to Sockaddr, overlapped *Overlapped, croutine *byte) (err error)
func WriteConsole(console Handle, buf *uint16, towrite uint32, written *uint32, reserved *byte) (err error)
type AddrinfoW struct {
    Flags     int32
    Family    int32
    Socktype  int32
    Protocol  int32
    Addrlen   uintptr
    Canonname *uint16
    Addr      uintptr
    Next      *AddrinfoW
}type ByHandleFileInformation struct {
    FileAttributes     uint32
    CreationTime       Filetime
    LastAccessTime     Filetime
    LastWriteTime      Filetime
    VolumeSerialNumber uint32
    FileSizeHigh       uint32
    FileSizeLow        uint32
    NumberOfLinks      uint32
    FileIndexHigh      uint32
    FileIndexLow       uint32
}type CertChainContext struct {
    Size                       uint32
    TrustStatus                CertTrustStatus
    ChainCount                 uint32
    Chains                     **CertSimpleChain
    LowerQualityChainCount     uint32
    LowerQualityChains         **CertChainContext
    HasRevocationFreshnessTime uint32
    RevocationFreshnessTime    uint32
}type CertChainElement struct {
    Size              uint32
    CertContext       *CertContext
    TrustStatus       CertTrustStatus
    RevocationInfo    *CertRevocationInfo
    IssuanceUsage     *CertEnhKeyUsage
    ApplicationUsage  *CertEnhKeyUsage
    ExtendedErrorInfo *uint16
}type CertChainPara struct {
    Size                         uint32
    RequestedUsage               CertUsageMatch
    RequstedIssuancePolicy       CertUsageMatch
    URLRetrievalTimeout          uint32
    CheckRevocationFreshnessTime uint32
    RevocationFreshnessTime      uint32
    CacheResync                  *Filetime
}type CertChainPolicyStatus struct {
    Size              uint32
    Error             uint32
    ChainIndex        uint32
    ElementIndex      uint32
    ExtraPolicyStatus uintptr
}type CertContext struct {
    EncodingType uint32
    EncodedCert  *byte
    Length       uint32
    CertInfo     uintptr
    Store        Handle
}func CertCreateCertificateContext(certEncodingType uint32, certEncoded *byte, encodedLen uint32) (context *CertContext, err error)
func CertEnumCertificatesInStore(store Handle, prevContext *CertContext) (context *CertContext, err error)
type CertRevocationInfo struct {
    Size             uint32
    RevocationResult uint32
    RevocationOid    *byte
    OidSpecificInfo  uintptr
    HasFreshnessTime uint32
    FreshnessTime    uint32
    CrlInfo          uintptr // *CertRevocationCrlInfo
}type CertSimpleChain struct {
    Size                       uint32
    TrustStatus                CertTrustStatus
    NumElements                uint32
    Elements                   **CertChainElement
    TrustListInfo              uintptr
    HasRevocationFreshnessTime uint32
    RevocationFreshnessTime    uint32
}type CertUsageMatch struct {
    Type  uint32
    Usage CertEnhKeyUsage
}A DLL implements access to a single DLL.
LoadDLL loads DLL file into memory.
Warning: using LoadDLL without an absolute path name is subject to DLL preloading attacks. To safely load a system DLL, use LazyDLL with System set to true, or use LoadLibraryEx directly.
MustLoadDLL is like LoadDLL but panics if load operation failes.
FindProc searches DLL d for procedure named name and returns *Proc if found. It returns an error if search fails.
MustFindProc is like FindProc but panics if search fails.
Release unloads DLL d from memory.
DLLError describes reasons for DLL load failures.
type DNSRecord struct {
    Next     *DNSRecord
    Name     *uint16
    Type     uint16
    Length   uint16
    Dw       uint32
    Ttl      uint32
    Reserved uint32
    Data     [40]byte
}type FileNotifyInformation struct {
    NextEntryOffset uint32
    Action          uint32
    FileNameLength  uint32
    FileName        uint16
}Nanoseconds returns Filetime ft in nanoseconds since Epoch (00:00:00 UTC, January 1, 1970).
func CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32, cryptProv uintptr, flags uint32, para uintptr) (handle Handle, err error)
func CreateEvent(eventAttrs *syscall.SecurityAttributes, manualReset uint32, initialState uint32, name *uint16) (handle Handle, err error)
func CreateFile(name *uint16, access uint32, mode uint32, sa *SecurityAttributes, createmode uint32, attrs uint32, templatefile int32) (handle Handle, err error)
func CreateFileMapping(fhandle Handle, sa *SecurityAttributes, prot uint32, maxSizeHigh uint32, maxSizeLow uint32, name *uint16) (handle Handle, err error)
func CreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint32, threadcnt uint32) (handle Handle, err error)
func CreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error)
func FindFirstFile(name *uint16, data *Win32finddata) (handle Handle, err error)
Code:
h, err := windows.LoadLibrary("kernel32.dll")
if err != nil {
    abort("LoadLibrary", err)
}
defer windows.FreeLibrary(h)
proc, err := windows.GetProcAddress(h, "GetVersion")
if err != nil {
    abort("GetProcAddress", err)
}
r, _, _ := syscall.Syscall(uintptr(proc), 0, 0, 0, 0)
major := byte(r)
minor := uint8(r >> 8)
build := uint16(r >> 16)
print("windows version ", major, ".", minor, " (Build ", build, ")\n")
          
        func OpenSCManager(machineName *uint16, databaseName *uint16, access uint32) (handle Handle, err error)
type InterfaceInfo struct {
    Flags            uint32
    Address          SockaddrGen
    BroadcastAddress SockaddrGen
    Netmask          SockaddrGen
}type IpAdapterAddresses struct {
    Length                uint32
    IfIndex               uint32
    Next                  *IpAdapterAddresses
    AdapterName           *byte
    FirstUnicastAddress   *IpAdapterUnicastAddress
    FirstAnycastAddress   *IpAdapterAnycastAddress
    FirstMulticastAddress *IpAdapterMulticastAddress
    FirstDnsServerAddress *IpAdapterDnsServerAdapter
    DnsSuffix             *uint16
    Description           *uint16
    FriendlyName          *uint16
    PhysicalAddress       [syscall.MAX_ADAPTER_ADDRESS_LENGTH]byte
    PhysicalAddressLength uint32
    Flags                 uint32
    Mtu                   uint32
    IfType                uint32
    OperStatus            uint32
    Ipv6IfIndex           uint32
    ZoneIndices           [16]uint32
    FirstPrefix           *IpAdapterPrefix
}type IpAdapterAnycastAddress struct {
    Length  uint32
    Flags   uint32
    Next    *IpAdapterAnycastAddress
    Address SocketAddress
}type IpAdapterDnsServerAdapter struct {
    Length   uint32
    Reserved uint32
    Next     *IpAdapterDnsServerAdapter
    Address  SocketAddress
}type IpAdapterInfo struct {
    Next                *IpAdapterInfo
    ComboIndex          uint32
    AdapterName         [MAX_ADAPTER_NAME_LENGTH + 4]byte
    Description         [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte
    AddressLength       uint32
    Address             [MAX_ADAPTER_ADDRESS_LENGTH]byte
    Index               uint32
    Type                uint32
    DhcpEnabled         uint32
    CurrentIpAddress    *IpAddrString
    IpAddressList       IpAddrString
    GatewayList         IpAddrString
    DhcpServer          IpAddrString
    HaveWins            bool
    PrimaryWinsServer   IpAddrString
    SecondaryWinsServer IpAddrString
    LeaseObtained       int64
    LeaseExpires        int64
}type IpAdapterMulticastAddress struct {
    Length  uint32
    Flags   uint32
    Next    *IpAdapterMulticastAddress
    Address SocketAddress
}type IpAdapterPrefix struct {
    Length       uint32
    Flags        uint32
    Next         *IpAdapterPrefix
    Address      SocketAddress
    PrefixLength uint32
}type IpAdapterUnicastAddress struct {
    Length             uint32
    Flags              uint32
    Next               *IpAdapterUnicastAddress
    Address            SocketAddress
    PrefixOrigin       int32
    SuffixOrigin       int32
    DadState           int32
    ValidLifetime      uint32
    PreferredLifetime  uint32
    LeaseLifetime      uint32
    OnLinkPrefixLength uint8
}type IpAddrString struct {
    Next      *IpAddrString
    IpAddress IpAddressString
    IpMask    IpMaskString
    Context   uint32
}type IpMaskString IpAddressString
type LazyDLL struct {
    Name string
    // System determines whether the DLL must be loaded from the
    // Windows System directory, bypassing the normal DLL search
    // path.
    System bool
    // contains filtered or unexported fields
}A LazyDLL implements access to a single DLL. It will delay the load of the DLL until the first call to its Handle method or to one of its LazyProc's Addr method.
NewLazyDLL creates new LazyDLL associated with DLL file.
NewLazySystemDLL is like NewLazyDLL, but will only search Windows System directory for the DLL if name is a base name (like "advapi32.dll").
Handle returns d's module handle.
Load loads DLL file d.Name into memory. It returns an error if fails. Load will not try to load DLL, if it is already loaded into memory.
NewProc returns a LazyProc for accessing the named procedure in the DLL d.
A LazyProc implements access to a procedure inside a LazyDLL. It delays the lookup until the Addr method is called.
Addr returns the address of the procedure represented by p. The return value can be passed to Syscall to run the procedure.
Call executes procedure p with arguments a. It will panic, if more then 15 arguments are supplied.
The returned error is always non-nil, constructed from the result of GetLastError. Callers must inspect the primary return value to decide whether an error occurred (according to the semantics of the specific function being called) before consulting the error. The error will be guaranteed to contain windows.Errno.
Find searches DLL for procedure named p.Name. It returns an error if search fails. Find will not search procedure, if it is already found and loaded into memory.
type MibIfRow struct {
    Name            [MAX_INTERFACE_NAME_LEN]uint16
    Index           uint32
    Type            uint32
    Mtu             uint32
    Speed           uint32
    PhysAddrLen     uint32
    PhysAddr        [MAXLEN_PHYSADDR]byte
    AdminStatus     uint32
    OperStatus      uint32
    LastChange      uint32
    InOctets        uint32
    InUcastPkts     uint32
    InNUcastPkts    uint32
    InDiscards      uint32
    InErrors        uint32
    InUnknownProtos uint32
    OutOctets       uint32
    OutUcastPkts    uint32
    OutNUcastPkts   uint32
    OutDiscards     uint32
    OutErrors       uint32
    OutQLen         uint32
    DescrLen        uint32
    Descr           [MAXLEN_IFDESCR]byte
}type Overlapped struct {
    Internal     uintptr
    InternalHigh uintptr
    Offset       uint32
    OffsetHigh   uint32
    HEvent       Handle
}A Proc implements access to a procedure inside a DLL.
Addr returns the address of the procedure represented by p. The return value can be passed to Syscall to run the procedure.
Call executes procedure p with arguments a. It will panic, if more then 15 arguments are supplied.
The returned error is always non-nil, constructed from the result of GetLastError. Callers must inspect the primary return value to decide whether an error occurred (according to the semantics of the specific function being called) before consulting the error. The error will be guaranteed to contain windows.Errno.
type ProcessEntry32 struct {
    Size            uint32
    Usage           uint32
    ProcessID       uint32
    DefaultHeapID   uintptr
    ModuleID        uint32
    Threads         uint32
    ParentProcessID uint32
    PriClassBase    int32
    Flags           uint32
    ExeFile         [MAX_PATH]uint16
}type QUERY_SERVICE_CONFIG struct {
    ServiceType      uint32
    StartType        uint32
    ErrorControl     uint32
    BinaryPathName   *uint16
    LoadOrderGroup   *uint16
    TagId            uint32
    Dependencies     *uint16
    ServiceStartName *uint16
    DisplayName      *uint16
}type RawSockaddrAny struct {
    Addr RawSockaddr
    Pad  [96]int8
}func (rsa *RawSockaddrAny) Sockaddr() (Sockaddr, error)
type RawSockaddrInet4 struct {
    Family uint16
    Port   uint16
    Addr   [4]byte /* in_addr */
    Zero   [8]uint8
}type RawSockaddrInet6 struct {
    Family   uint16
    Port     uint16
    Flowinfo uint32
    Addr     [16]byte /* in6_addr */
    Scope_id uint32
}type Rusage struct {
    CreationTime Filetime
    ExitTime     Filetime
    KernelTime   Filetime
    UserTime     Filetime
}Invented structures to support what package os expects.
type SERVICE_STATUS struct {
    ServiceType             uint32
    CurrentState            uint32
    ControlsAccepted        uint32
    Win32ExitCode           uint32
    ServiceSpecificExitCode uint32
    CheckPoint              uint32
    WaitHint                uint32
}type SID struct{}The security identifier (SID) structure is a variable-length structure used to uniquely identify users or groups.
LookupSID retrieves a security identifier sid for the account and the name of the domain on which the account was found. System specify target computer to search.
StringToSid converts a string-format security identifier sid into a valid, functional sid.
Copy creates a duplicate of security identifier sid.
Len returns the length, in bytes, of a valid security identifier sid.
LookupAccount retrieves the name of the account for this sid and the name of the first domain on which this sid is found. System specify target computer to search for.
String converts sid to a string format suitable for display, storage, or transmission.
type SSLExtraCertChainPolicyPara struct {
    Size       uint32
    AuthType   uint32
    Checks     uint32
    ServerName *uint16
}type Sockaddr interface {
    // contains filtered or unexported methods
}type SockaddrInet6 struct {
    Port   int
    ZoneId uint32
    Addr   [16]byte
    // contains filtered or unexported fields
}type SocketAddress struct {
    Sockaddr       *syscall.RawSockaddrAny
    SockaddrLength int32
}type StartupInfo struct {
    Cb  uint32
    Desktop       *uint16
    Title         *uint16
    X             uint32
    Y             uint32
    XSize         uint32
    YSize         uint32
    XCountChars   uint32
    YCountChars   uint32
    FillAttribute uint32
    Flags         uint32
    ShowWindow    uint16
    StdInput  Handle
    StdOutput Handle
    StdErr    Handle
    // contains filtered or unexported fields
}type Systemtime struct {
    Year         uint16
    Month        uint16
    DayOfWeek    uint16
    Day          uint16
    Hour         uint16
    Minute       uint16
    Second       uint16
    Milliseconds uint16
}Timespec is an invented structure on Windows, but here for consistency with the corresponding package for other operating systems.
Invented values to support what package os expects.
type Timezoneinformation struct {
    Bias         int32
    StandardName [32]uint16
    StandardDate Systemtime
    StandardBias int32
    DaylightName [32]uint16
    DaylightDate Systemtime
    DaylightBias int32
}An access token contains the security information for a logon session. The system creates an access token when a user logs on, and every process executed on behalf of the user has a copy of the token. The token identifies the user, the user's groups, and the user's privileges. The system uses the token to control access to securable objects and to control the ability of the user to perform various system-related operations on the local computer.
OpenCurrentProcessToken opens the access token associated with current process.
Close releases access to access token.
func (t Token) GetTokenGroups() (*Tokengroups, error)
GetTokenGroups retrieves group accounts associated with access token t.
func (t Token) GetTokenPrimaryGroup() (*Tokenprimarygroup, error)
GetTokenPrimaryGroup retrieves access token t primary group information. A pointer to a SID structure representing a group that will become the primary group of any objects created by a process using this access token.
GetTokenUser retrieves access token t user account information.
GetUserProfileDirectory retrieves path to the root directory of the access token t user's profile.
type Tokengroups struct {
    GroupCount uint32
    Groups     [1]SIDAndAttributes
}type Tokenuser struct {
    User SIDAndAttributes
}type WSAData struct {
    Version      uint16
    HighVersion  uint16
    MaxSockets   uint16
    MaxUdpDg     uint16
    VendorInfo   *byte
    Description  [WSADESCRIPTION_LEN + 1]byte
    SystemStatus [WSASYS_STATUS_LEN + 1]byte
}type WSAProtocolChain struct {
    ChainLen     int32
    ChainEntries [MAX_PROTOCOL_CHAIN]uint32
}type WSAProtocolInfo struct {
    ServiceFlags1     uint32
    ServiceFlags2     uint32
    ServiceFlags3     uint32
    ServiceFlags4     uint32
    ProviderFlags     uint32
    ProviderId        GUID
    CatalogEntryId    uint32
    ProtocolChain     WSAProtocolChain
    Version           int32
    AddressFamily     int32
    MaxSockAddr       int32
    MinSockAddr       int32
    SocketType        int32
    Protocol          int32
    ProtocolMaxOffset int32
    NetworkByteOrder  int32
    SecurityScheme    int32
    MessageSize       uint32
    ProviderReserved  uint32
    ProtocolName      [WSAPROTOCOL_LEN + 1]uint16
}func (w WaitStatus) Continued() bool
func (w WaitStatus) CoreDump() bool
func (w WaitStatus) ExitStatus() int
func (w WaitStatus) Exited() bool
func (w WaitStatus) Signal() Signal
func (w WaitStatus) Signaled() bool
func (w WaitStatus) StopSignal() Signal
func (w WaitStatus) Stopped() bool
func (w WaitStatus) TrapCause() int
type Win32FileAttributeData struct {
    FileAttributes uint32
    CreationTime   Filetime
    LastAccessTime Filetime
    LastWriteTime  Filetime
    FileSizeHigh   uint32
    FileSizeLow    uint32
}type Win32finddata struct {
    FileAttributes    uint32
    CreationTime      Filetime
    LastAccessTime    Filetime
    LastWriteTime     Filetime
    FileSizeHigh      uint32
    FileSizeLow       uint32
    Reserved0         uint32
    Reserved1         uint32
    FileName          [MAX_PATH - 1]uint16
    AlternateFileName [13]uint16
}☞ The definition of Linger is not appropriate for direct use with Setsockopt and Getsockopt. Use SetsockoptLinger instead.
| Path | Synopsis | 
|---|---|
| registry | Package registry provides access to the Windows registry. | 
| svc | Package svc provides everything required to build Windows service. | 
| svc/debug | Package debug provides facilities to execute svc.Handler on console. | 
| svc/eventlog | Package eventlog implements access to Windows event log. | 
| svc/example | Example service program that beeps. | 
| svc/mgr | Package mgr can be used to manage Windows service programs. | 
Package windows imports 6 packages (graph) and is imported by 10 packages. Updated 5 days ago with GOOS=windows. Refresh now. Tools for package owners.