Ejemplo n.º 1
0
func Free(s *Shout) {
	C.shout_free(s.struc)
}
Ejemplo n.º 2
0
func DestroyShout(shout Shout) {
	/* Destroys the Shout instance. The instance can't be used
	   without undefined behaviour after calling this function */
	C.shout_free(shout.shout)
	C.shout_metadata_free(shout.shout_metadata)
}