1251843Sbapt#!/bin/sh
2251843Sbapt# $Id: setup-vars,v 1.3 2012/06/29 09:52:26 tom Exp $
3217309Snwhitehorn# vile:shmode
4217309Snwhitehorn
5220749Snwhitehorn# These symbols are defined to use in the sample shell scripts to make them
6220749Snwhitehorn# more readable.  But they are (intentionally) not exported.  If they were
7220749Snwhitehorn# exported, they would also be visible in the dialog program (a subprocess).
8220749Snwhitehorn
9217309Snwhitehorn: ${DIALOG=dialog}
10217309Snwhitehorn
11217309Snwhitehorn: ${DIALOG_OK=0}
12217309Snwhitehorn: ${DIALOG_CANCEL=1}
13217309Snwhitehorn: ${DIALOG_HELP=2}
14217309Snwhitehorn: ${DIALOG_EXTRA=3}
15217309Snwhitehorn: ${DIALOG_ITEM_HELP=4}
16217309Snwhitehorn: ${DIALOG_ESC=255}
17251843Sbapt
18251843Sbapt: ${SIG_NONE=0}
19251843Sbapt: ${SIG_HUP=1}
20251843Sbapt: ${SIG_INT=2}
21251843Sbapt: ${SIG_QUIT=3}
22251843Sbapt: ${SIG_KILL=9}
23251843Sbapt: ${SIG_TERM=15}
24