Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MessageBox (0.27 sec)

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

    	ComputerNamePhysicalDnsHostname       = 5
    	ComputerNamePhysicalDnsDomain         = 6
    	ComputerNamePhysicalDnsFullyQualified = 7
    	ComputerNameMax                       = 8
    )
    
    // For MessageBox()
    const (
    	MB_OK                   = 0x00000000
    	MB_OKCANCEL             = 0x00000001
    	MB_ABORTRETRYIGNORE     = 0x00000002
    	MB_YESNOCANCEL          = 0x00000003
    	MB_YESNO                = 0x00000004
    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/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetWindowThreadProcessId(hwnd HWND, pid *uint32) (tid uint32, err error) = user32.GetWindowThreadProcessId
    //sys	GetShellWindow() (shellWindow HWND) = user32.GetShellWindow
    //sys	MessageBox(hwnd HWND, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) [failretval==0] = user32.MessageBoxW
    //sys	ExitWindowsEx(flags uint32, reason uint32) (err error) = user32.ExitWindowsEx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	return
    }
    
    func IsWindowVisible(hwnd HWND) (isVisible bool) {
    	r0, _, _ := syscall.Syscall(procIsWindowVisible.Addr(), 1, uintptr(hwnd), 0, 0)
    	isVisible = r0 != 0
    	return
    }
    
    func MessageBox(hwnd HWND, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top