mirror of
https://github.com/rwinkhart/cmutton.git
synced 2026-09-05 16:47:28 -04:00
Add GetEntryRootPath()
This commit is contained in:
@@ -69,14 +69,16 @@ func GetVanityPath(realPath *C.char) C.PascalString {
|
|||||||
// versionNumber
|
// versionNumber
|
||||||
//
|
//
|
||||||
//export GetVersion
|
//export GetVersion
|
||||||
func GetVersion() *C.char {
|
func GetVersion() *C.char { return C.CString(global.LibmuttonVersion) }
|
||||||
return C.CString(global.LibmuttonVersion)
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetSSHDirPath returns:
|
// GetSSHDirPath returns:
|
||||||
// sshDirPath
|
// sshDirPath
|
||||||
//
|
//
|
||||||
//export GetSSHDirPath
|
//export GetSSHDirPath
|
||||||
func GetSSHDirPath() C.PascalString {
|
func GetSSHDirPath() C.PascalString { return getPascalString(global.SSHDir) }
|
||||||
return getPascalString(global.SSHDir)
|
|
||||||
}
|
// GetEntryRootPath returns:
|
||||||
|
// entryRootPath
|
||||||
|
//
|
||||||
|
//export GetEntryRootPath
|
||||||
|
func GetEntryRootPath() C.PascalString { return getPascalString(global.EntryRoot) }
|
||||||
|
|||||||
Reference in New Issue
Block a user