예제 #1
0
파일: menus.go 프로젝트: mpatraw/gocurse
func (menu *Menu) ItemCount() int {
	return int(C.item_count((*C.MENU)(menu)))
}
예제 #2
0
파일: menu.go 프로젝트: trotha01/goncurses
// Count returns the number of MenuItems in the Menu
func (m *Menu) Count() int {
	return int(C.item_count(m.menu))
}