Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ResizePseudoConsole (0.2 sec)

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

    }
    
    // ResizePseudoConsole resizes the internal buffers of the pseudo console to the width and height specified in `size`.
    func ResizePseudoConsole(pconsole Handle, size Coord) 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 resizePseudoConsole(pconsole, *((*uint32)(unsafe.Pointer(&size))))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top