/usr/include/kuip/kmenu.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 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | /*
* $Id: kmenu.h,v 1.2 1996/04/16 13:26:46 gunter Exp $
*
* $Log: kmenu.h,v $
* Revision 1.2 1996/04/16 13:26:46 gunter
* Mods to compile kuipc. The includes needed only for kuipc where moved
* to kuipc, together with m4 files to create/update these header files.
*
* Revision 1.1.1.1 1996/03/08 15:33:00 mclareni
* Kuip
*
*/
/* kmenu.h: data structures for menu and command definitions */
#define __ /* Null */
#include <kuip/kmenu1.h>
#include <kuip/kmenu2.h>
#include <kuip/kmenu3.h>
#include <kuip/kmenu4.h>
#include <kuip/kmenu5.h>
#include <kuip/kmenu6.h>
#undef __
/*
* temporary fix until we can reserve an extra word in KmCommand structure
* to count keyboard and macro commands separately
*/
#define XCOUNT_SHIFT 10
#define XCOUNT_OFFSET (1 << XCOUNT_SHIFT)
#define XCOUNT_MASK (XCOUNT_OFFSET - 1)
extern void check_version( int, int );
extern void check_edit_server(void);
extern int exec_cmd_string( const char*, int, int(*)() );
extern int exec_decoded_cmd( KmCommand* );
extern KmMenu* find_submenu( const char* );
extern char* fmt_cmd_help( KmCommand*, int );
extern void menu_style(void);
extern void print_cmd_list( KmCommand**, const char* );
extern void reset_arg_list( KmCommand* );
extern KmMenu** root_menu_list( const char* );
extern KmCommand* search_command( const char*, KmCommand*** );
|