~ubuntu-branches/debian/squeeze/menu/squeeze

« back to all changes in this revision

Viewing changes to update-menus/common.h

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-02-15 23:01:02 UTC
  • Revision ID: james.westby@ubuntu.com-20020215230102-7j7wb86z0jmhbgy3
Tags: 2.1.5-10.1
NMU. Statically link menu on mips and mipsel to work around a
likely toolchain bug of some sort. sorta kinda Closes: #127921

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//   -*- mode: c++; -*-
 
2
 
 
3
const int MAX_BUF=10240;
 
4
 
 
5
#define MENUMETHODS     "/etc/menu-methods/"
 
6
#define COMMAND_VAR "command"
 
7
#define ICON_VAR    "icon"
 
8
#define NEEDS_VAR   "needs"
 
9
#define SECTION_VAR "section"
 
10
#define SORT_VAR    "sort"
 
11
#define TITLE_VAR   "title"
 
12
#define HOTKEY_VAR  "hotkey"
 
13
#define HINTS_VAR   "hints"
 
14
#define PACKAGE_VAR "package"
 
15
#define PRIVATE_ENTRYCOUNT_VAR "__PRIVATE__ENTRYCOUNT"
 
16
#define PRIVATE_ENTRYINDEX_VAR "__PRIVATE__ENTRYINDEX"
 
17
#define PRIVATE_LEVEL_VAR "__PRIVATE__LEVEL"
 
18
 
 
19
//conditionals in the menuentry files (like "package(vi)")
 
20
#define COND_PACKAGE "package"
 
21
 
 
22
#define GETTEXTDOMAIN "menu-messages"
 
23
 
 
24
 
 
25
#define COMPAT_MODE  "menu-1"
 
26
 
 
27