コード例 #1
0
ファイル: libshout.go プロジェクト: boedy/go-libshout
func Free(s *Shout) {
	C.shout_free(s.struc)
}
コード例 #2
0
ファイル: shout.go プロジェクト: Bevinsky/icecast-proxy-go
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)
}