1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-12 08:14:24 -04:00
v2fly/common/platform/windows.go

21 lines
384 B
Go
Raw Normal View History

2015-10-09 10:48:05 -04:00
// +build windows
package platform
import "path/filepath"
2015-10-13 15:41:53 -04:00
func ExpandEnv(s string) string {
2015-10-09 10:48:05 -04:00
// TODO
return s
}
2015-10-13 15:41:53 -04:00
func LineSeparator() string {
return "\r\n"
}
func GetToolLocation(file string) string {
const name = "v2ray.location.tool"
toolPath := EnvFlag{Name: name, AltName: NormalizeEnvName(name)}.GetValue(getExecutableDir)
return filepath.Join(toolPath, file+".exe")
}