Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HideWindow (0.15 sec)

  1. src/syscall/exec_windows.go

    		} else {
    			return FullPath(d + "\\" + p)
    		}
    	}
    }
    
    type ProcAttr struct {
    	Dir   string
    	Env   []string
    	Files []uintptr
    	Sys   *SysProcAttr
    }
    
    type SysProcAttr struct {
    	HideWindow                 bool
    	CmdLine                    string // used if non-empty, else the windows command line is built by escaping the arguments passed to StartProcess
    	CreationFlags              uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/runtime/signal_windows_test.go

    	defer inPipe.Close()
    
    	// in a new command window
    	const _CREATE_NEW_CONSOLE = 0x00000010
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		CreationFlags: _CREATE_NEW_CONSOLE,
    		HideWindow:    true,
    	}
    	if err := cmd.Start(); err != nil {
    		t.Fatalf("Start failed: %v", err)
    	}
    	defer func() {
    		cmd.Process.Kill()
    		cmd.Wait()
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SysProcAttr.Ctty", Field, 1},
    		{"SysProcAttr.Foreground", Field, 5},
    		{"SysProcAttr.GidMappings", Field, 4},
    		{"SysProcAttr.GidMappingsEnableSetgroups", Field, 5},
    		{"SysProcAttr.HideWindow", Field, 0},
    		{"SysProcAttr.Jail", Field, 21},
    		{"SysProcAttr.NoInheritHandles", Field, 16},
    		{"SysProcAttr.Noctty", Field, 0},
    		{"SysProcAttr.ParentProcess", Field, 17},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (windows-386), type StartupInfo struct, YSize uint32
    pkg syscall (windows-386), type SysProcAttr struct, CmdLine string
    pkg syscall (windows-386), type SysProcAttr struct, HideWindow bool
    pkg syscall (windows-386), type Systemtime struct
    pkg syscall (windows-386), type Systemtime struct, Day uint16
    pkg syscall (windows-386), type Systemtime struct, DayOfWeek uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top