func GetStandardPath(path int) Path { var pth *C.ALLEGRO_PATH pth = C.al_get_standard_path(C.int(path)) return toPth(pth) }
// Gets a standard path location. func GetStandardPath(id int) *Path { return wrapPath(C.al_get_standard_path(C.int(id))) }
func GetStandardPath(id int32) *Path { return (*Path)(unsafe.Pointer(C.al_get_standard_path(C.int(id)))) }