Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 0x0000001b (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // For MessageBox()
    const (
    	MB_OK                   = 0x00000000
    	MB_OKCANCEL             = 0x00000001
    	MB_ABORTRETRYIGNORE     = 0x00000002
    	MB_YESNOCANCEL          = 0x00000003
    	MB_YESNO                = 0x00000004
    	MB_RETRYCANCEL          = 0x00000005
    	MB_CANCELTRYCONTINUE    = 0x00000006
    	MB_ICONHAND             = 0x00000010
    	MB_ICONQUESTION         = 0x00000020
    	MB_ICONEXCLAMATION      = 0x00000030
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/syscall_windows.go

    //sys UnlockFileEx(file syscall.Handle, reserved uint32, bytesLow uint32, bytesHigh uint32, overlapped *syscall.Overlapped) (err error) = kernel32.UnlockFileEx
    
    const (
    	LOCKFILE_FAIL_IMMEDIATELY = 0x00000001
    	LOCKFILE_EXCLUSIVE_LOCK   = 0x00000002
    )
    
    const MB_ERR_INVALID_CHARS = 8
    
    //sys	GetACP() (acp uint32) = kernel32.GetACP
    //sys	GetConsoleCP() (ccp uint32) = kernel32.GetConsoleCP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	IN_NONBLOCK              = 0x00000004
    	IN_ACCESS                = 0x00000001
    	IN_MODIFY                = 0x00000002
    	IN_ATTRIB                = 0x00000004
    	IN_CLOSE_WRITE           = 0x00000008
    	IN_CLOSE_NOWRITE         = 0x00000010
    	IN_OPEN                  = 0x00000020
    	IN_MOVED_FROM            = 0x00000040
    	IN_MOVED_TO              = 0x00000080
    	IN_CREATE                = 0x00000100
    	IN_DELETE                = 0x00000200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_GROUP_MANDATORY          = 0x00000001
    	SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002
    	SE_GROUP_ENABLED            = 0x00000004
    	SE_GROUP_OWNER              = 0x00000008
    	SE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010
    	SE_GROUP_INTEGRITY          = 0x00000020
    	SE_GROUP_INTEGRITY_ENABLED  = 0x00000040
    	SE_GROUP_LOGON_ID           = 0xC0000000
    	SE_GROUP_RESOURCE           = 0x20000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	CBR_38400  = 38400
    	CBR_57600  = 57600
    	CBR_115200 = 115200
    	CBR_128000 = 128000
    	CBR_256000 = 256000
    
    	DTR_CONTROL_DISABLE   = 0x00000000
    	DTR_CONTROL_ENABLE    = 0x00000010
    	DTR_CONTROL_HANDSHAKE = 0x00000020
    
    	RTS_CONTROL_DISABLE   = 0x00000000
    	RTS_CONTROL_ENABLE    = 0x00001000
    	RTS_CONTROL_HANDSHAKE = 0x00002000
    	RTS_CONTROL_TOGGLE    = 0x00003000
    
    	NOPARITY    = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	DF_1_NOCOMMON DynFlag1 = 0x40000000
    )
    
    var dflag1Strings = []intName{
    	{0x00000001, "DF_1_NOW"},
    	{0x00000002, "DF_1_GLOBAL"},
    	{0x00000004, "DF_1_GROUP"},
    	{0x00000008, "DF_1_NODELETE"},
    	{0x00000010, "DF_1_LOADFLTR"},
    	{0x00000020, "DF_1_INITFIRST"},
    	{0x00000040, "DF_1_NOOPEN"},
    	{0x00000080, "DF_1_ORIGIN"},
    	{0x00000100, "DF_1_DIRECT"},
    	{0x00000200, "DF_1_TRANS"},
    	{0x00000400, "DF_1_INTERPOSE"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top