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

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

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