Beispiel #1
0
func GetAppName() string {
	var str string

	str = C.GoString(C.al_get_app_name())

	return str
}
Beispiel #2
0
Datei: al.go Projekt: beoran/algo
// Sets the name of the app
func GetAppName() string {
	return gostr(C.al_get_app_name())
}
Beispiel #3
0
func GetAppName() string {
	return C.GoString(C.al_get_app_name())
}