i would like to look inside of a GdkPixbuf structure for debugging purposes. but all i get is a <incomplete type>
message.
ill show you a little snippet of example code.
//load image
GtkWidget *image = gtk_image_new_from_file("image.bmp");
//get the GdkPixbuf representation of the image
GdkPixbuf *pixbuff = gtk_image_get_pixbuf(GTK_IMAGE(image));
ok now i when i try to look inside the pixbuff structure i get the <incomplete type>
message. How do i correctly look inside this structure using ddd or gdb debuggers ? im new a coding c and debugging.
ive tried the following in ddd
graph display (GdkPixbuf *)pixbuff and also right clicking on the variable and using different display options to no avail.
any ideas on how to correctly look inside this structure ?