Add missing file

svn path=/trunk/gtk-sharp/; revision=8402
This commit is contained in:
Miguel de Icaza 2002-10-19 21:44:31 +00:00
parent 88d38246f5
commit 77090286fa

13
glue/combo.c Normal file
View File

@ -0,0 +1,13 @@
/* combo.c : Glue for accessing fields in the GtkCombo widget.
*
* Author: Pablo Baena (pbaena@uol.com.ar)
*
*/
#include <gtk/gtkcombo.h>
GtkWidget*
gtksharp_combo_get_entry (GtkCombo* combo)
{
return combo->entry;
}