/usr/include/libwaei/dictinstlist.h is in libwaei-dev 3.2.0b1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #ifndef LW_DICTINSTLIST_INCLUDED
#define LW_DICTINSTLIST_INCLUDED
#define LW_DICTINSTLIST(object) (LwDictInstList*) object
struct _LwDictInstList {
GList *list;
gboolean cancel;
};
typedef struct _LwDictInstList LwDictInstList;
LwDictInstList* lw_dictinstlist_new (LwPreferences *pm);
void lw_dictinstlist_free (LwDictInstList*);
gboolean lw_dictinstlist_data_is_valid (LwDictInstList*);
LwDictInst* lw_dictinstlist_get_dictinst_fuzzy (LwDictInstList*, const char*);
LwDictInst* lw_dictinstlist_get_dictinst_by_idstring (LwDictInstList*, const char*);
LwDictInst* lw_dictinstlist_get_dictinst_by_filename (LwDictInstList*, const char*);
void lw_dictinstlist_set_cancel_operations (LwDictInstList*, gboolean);
#endif
|