File: gtk_since_3_14.go.h

package info (click to toggle)
golang-github-gotk3-gotk3 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,332 kB
  • sloc: ansic: 904; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
// Same copyright and license as the rest of the files in this project

extern void goListBoxForEachFuncs(GtkListBox *box, GtkListBoxRow *row,
                                  gpointer user_data);

static inline void _gtk_list_box_selected_foreach(GtkListBox *box,
                                                  gpointer user_data) {
  gtk_list_box_selected_foreach(
      box, (GtkListBoxForeachFunc)(goListBoxForEachFuncs), user_data);
}