Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for utf16CommandLine (0.48 sec)

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

    	if len(commandLine) == 0 {
    		return []string{}, nil
    	}
    	utf16CommandLine, err := UTF16FromString(commandLine)
    	if err != nil {
    		return nil, errorspkg.New("string with NUL passed to DecomposeCommandLine")
    	}
    	var argc int32
    	argv, err := commandLineToArgv(&utf16CommandLine[0], &argc)
    	if err != nil {
    		return nil, err
    	}
    	defer LocalFree(Handle(unsafe.Pointer(argv)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top