/usr/include/kuip/kmenu3.h is in libpacklib1-dev 20061220+dfsg3-4.
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 | typedef KmParInt KmParReal; /* real and int have the same fields */ __
/* */ __
typedef struct { /* */ __
char *name; /* parameter name */ __
int abbrev; /* minimum length that name is recognized */ __
char *prompt; /* prompt string */ __
char *dfault; /* default value */ __
char *last; /* last value for Motif panel (malloced) */ __
int width; /* width of input field */ __
int range_count; /* number of items in range_value */ __
char **range_value; /* list of allowed values */ __
int select_count; /* number of items in select_count */ __
char **select_value; /* list of values for selection box */ __
KmParFlag flags; /* special flags */ __
KmParType type; /* parameter type */ __
void *ptype; /* structure pointer selected by type */ __
} KmParameter; /* */ __
/* */ __
|