Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for MoveFile (0.24 sec)

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

    //sys	CreateDirectory(path *uint16, sa *SecurityAttributes) (err error) = CreateDirectoryW
    //sys	RemoveDirectory(path *uint16) (err error) = RemoveDirectoryW
    //sys	DeleteFile(path *uint16) (err error) = DeleteFileW
    //sys	MoveFile(from *uint16, to *uint16) (err error) = MoveFileW
    //sys	MoveFileEx(from *uint16, to *uint16, flags uint32) (err error) = MoveFileExW
    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/zsyscall_windows.go

    	r1, _, e1 := syscall.Syscall(procMoveFileExW.Addr(), 3, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), uintptr(flags))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func MoveFile(from *uint16, to *uint16) (err error) {
    	r1, _, e1 := syscall.Syscall(procMoveFileW.Addr(), 2, uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(to)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Mkdirat", Func, 0},
    		{"Mkfifo", Func, 0},
    		{"Mknod", Func, 0},
    		{"Mknodat", Func, 0},
    		{"Mlock", Func, 0},
    		{"Mlockall", Func, 0},
    		{"Mmap", Func, 0},
    		{"Mount", Func, 0},
    		{"MoveFile", Func, 0},
    		{"Mprotect", Func, 0},
    		{"Msghdr", Type, 0},
    		{"Msghdr.Control", Field, 0},
    		{"Msghdr.Controllen", Field, 0},
    		{"Msghdr.Flags", Field, 0},
    		{"Msghdr.Iov", Field, 0},
    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), func LookupSID(string, string) (*SID, string, uint32, error)
    pkg syscall (windows-386), func MapViewOfFile(Handle, uint32, uint32, uint32, uintptr) (uintptr, error)
    pkg syscall (windows-386), func MoveFile(*uint16, *uint16) error
    pkg syscall (windows-386), func MustLoadDLL(string) *DLL
    pkg syscall (windows-386), func NetApiBufferFree(*uint8) error
    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