1%% 2headers 3#define NO_IMPORT_PYGOBJECT 4#include "pytomoe-utils.h" 5%% 6override tomoe_shelf_get_dict_names noargs 7static PyObject * 8_wrap_tomoe_shelf_get_dict_names(PyGObject *self) 9{ 10 GList *names; 11 PyObject *py_names; 12 13 names = tomoe_shelf_get_dict_names (TOMOE_SHELF(self->obj)); 14 15 CONVERT_STRING_LIST (py_names, names); 16 17 g_list_free (names); 18 19 return py_names; 20} 21%% 22