dokan.go 534 B

12345678910111213141516171819202122232425
  1. // +build !windows
  2. /*
  3. * Rufs - Remote Union File System
  4. *
  5. * Copyright 2017 Matthias Ladkau. All rights reserved.
  6. *
  7. * This Source Code Form is subject to the terms of the MIT
  8. * License, If a copy of the MIT License was not distributed with this
  9. * file, You can obtain one at https://opensource.org/licenses/MIT.
  10. */
  11. package main
  12. import "devt.de/krotik/rufs"
  13. /*
  14. setupDokanMount mounts Rufs as a DOKAN filesystem.
  15. */
  16. func setupDokanMount(dokanMount *string, tree *rufs.Tree) error {
  17. // Only works on Windows.
  18. return nil
  19. }