GTK - Retrieve multiple values from widgets on button press
问题 This is a follow up question to my previous question here: GTK Retrieve values from multiple widgets on button press I am still trying to solve the same issue, however have implemented suggestions from the previous question's responses. Here is my full code: #include <gtk/gtk.h> struct data { GtkEntry *hash; GtkWidget *hashType; }; static void queue_hash (GtkButton *button, gpointer user_data) { struct data *dataStruct = user_data; GtkEntry *hashWid = dataStruct->hash; GtkWidget *hashTypeWid