File: stub.go

package info (click to toggle)
golang-github-apparentlymart-go-userdirs 0.0~git20200915.b0c018a-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 202 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
// +build !windows

package windowsbase

import (
	"errors"
)

func knownFolderDir(id *FolderID) (string, error) {
	return "", errors.New("cannot use Windows known folders on a non-Windows platform")
}