mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 13:15:39 +00:00
14 lines
225 B
C
14 lines
225 B
C
|
/* 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;
|
||
|
}
|