Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoadCancelIoEx (0.34 sec)

  1. src/syscall/syscall_windows.go

    	if e != nil {
    		return e
    	}
    	if mode&S_IWRITE != 0 {
    		attrs &^= FILE_ATTRIBUTE_READONLY
    	} else {
    		attrs |= FILE_ATTRIBUTE_READONLY
    	}
    	return SetFileAttributes(p, attrs)
    }
    
    func LoadCancelIoEx() error {
    	return procCancelIoEx.Find()
    }
    
    func LoadSetFileCompletionNotificationModes() error {
    	return procSetFileCompletionNotificationModes.Find()
    }
    
    // net api calls
    
    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

    		attrs |= FILE_ATTRIBUTE_READONLY
    	}
    	return SetFileAttributes(p, attrs)
    }
    
    func LoadGetSystemTimePreciseAsFileTime() error {
    	return procGetSystemTimePreciseAsFileTime.Find()
    }
    
    func LoadCancelIoEx() error {
    	return procCancelIoEx.Find()
    }
    
    func LoadSetFileCompletionNotificationModes() error {
    	return procSetFileCompletionNotificationModes.Find()
    }
    
    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