Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for createPseudoConsole (0.17 sec)

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

    }
    
    // CreatePseudoConsole creates a windows pseudo console.
    func CreatePseudoConsole(size Coord, in Handle, out Handle, flags uint32, pconsole *Handle) error {
    	// We need this wrapper to manually cast Coord to uint32. The autogenerated wrappers only
    	// accept arguments that can be casted to uintptr, and Coord can't.
    	return createPseudoConsole(*((*uint32)(unsafe.Pointer(&size))), in, out, flags, pconsole)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	DISABLE_NEWLINE_AUTO_RETURN        = 0x8
    	ENABLE_LVB_GRID_WORLDWIDE          = 0x10
    )
    
    // Pseudo console related constants used for the flags parameter to
    // CreatePseudoConsole. See: https://learn.microsoft.com/en-us/windows/console/createpseudoconsole
    const (
    	PSEUDOCONSOLE_INHERIT_CURSOR = 0x1
    )
    
    type Coord struct {
    	X int16
    	Y int16
    }
    
    type SmallRect struct {
    	Left   int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procCreateProcessW                                       = modkernel32.NewProc("CreateProcessW")
    	procCreatePseudoConsole                                  = modkernel32.NewProc("CreatePseudoConsole")
    	procCreateSymbolicLinkW                                  = modkernel32.NewProc("CreateSymbolicLinkW")
    	procCreateToolhelp32Snapshot                             = modkernel32.NewProc("CreateToolhelp32Snapshot")
    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