Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for errorspkg (0.09 sec)

  1. src/syscall/syscall_windows.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Windows system calls.
    
    package syscall
    
    import (
    	errorspkg "errors"
    	"internal/asan"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/msan"
    	"internal/oserror"
    	"internal/race"
    	"runtime"
    	"sync"
    	"unsafe"
    )
    
    type Handle uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Windows system calls.
    
    package windows
    
    import (
    	errorspkg "errors"
    	"fmt"
    	"runtime"
    	"sync"
    	"syscall"
    	"time"
    	"unicode/utf16"
    	"unsafe"
    )
    
    type Handle uintptr
    type HWND uintptr
    
    const (
    	InvalidHandle = ^Handle(0)
    	InvalidHWND   = ^HWND(0)
    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