2015-08-15 13:20:58 +00:00
|
|
|
// Copyright (C) 2015 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2015-08-15 13:20:58 +00:00
|
|
|
|
2021-08-17 08:10:41 +00:00
|
|
|
//go:build windows
|
2015-08-15 13:20:58 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package osutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
func MaximizeOpenFileLimit() (int, error) {
|
|
|
|
return 0, errors.New("not relevant on Windows")
|
|
|
|
}
|