コード例 #1
0
ファイル: system.go プロジェクト: bluepeppers/allegro
func GetOrgName() string {
	var str string

	str = C.GoString(C.al_get_org_name())

	return str
}
コード例 #2
0
ファイル: al.go プロジェクト: beoran/algo
// Gets the name of the organisation
func GetOrgName() string {
	return gostr(C.al_get_org_name())
}
コード例 #3
0
ファイル: system.go プロジェクト: b1naryth1ef/allegro
func GetOrgName() string {
	return C.GoString(C.al_get_org_name())
}