/* OSSP rc - Run-command processor ** Copyright (c) 2002 Ralf S. Engelschall ** Copyright (c) 2002 Cable & Wireless Deutschland GmbH ** Copyright (c) 2002 The OSSP Project ** ** This file is part of OSSP rc, a portable Run-command processor ** which can be found at http://www.ossp.org/pkg/lib/rc/ ** ** Permission to use, copy, modify, and distribute this software for ** any purpose with or without fee is hereby granted, provided that ** the above copyright notice and this permission notice appear in all ** copies. ** ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED ** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ** IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF ** USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ** ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT ** OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ** SUCH DAMAGE. ** ** rc_config.h: Run-command processor ISO C public header file */ #ifndef __OSSPRC_CONFIG_H__ #define __OSSPRC_CONFIG_H__ /* Available options and their values */ #define RC_HEADVAL 0 /* Unused, as popt reserves 0 to return success */ #define RC_USE_VAL 1 #define RC_DBG_VAL 2 #define RC_VER_VAL 3 #define RC_EVL_VAL 4 #define RC_HLP_VAL 5 #define RC_INF_VAL 6 #define RC_LBL_VAL 7 #define RC_PRN_VAL 8 #define RC_SIL_VAL 9 #define RC_RAW_VAL 10 #define RC_VRB_VAL 11 #define RC_EXC_VAL 12 #define RC_LOC_VAL 13 #define RC_CNF_VAL 14 #define RC_FNC_VAL 15 #define RC_QRY_VAL 16 #define RC_TMP_VAL 17 #define RC_OWN_VAL 18 #define RC_GRP_VAL 19 #define RC_MSK_VAL 20 #define RC_ASS_VAL 21 #define RC_DEF_VAL 22 #define RC_REF_VAL 23 #define RC_PRM_VAL 24 #define RC_TRM_VAL 25 #define RC_NCF_VAL 26 #define RC_CMN_VAL 27 #define RC_DFL_VAL 28 #define RC_ERR_VAL 29 #define RC_NUMOPTS 30 /* Increment with each option addition */ #endif /* __OSSPRC_CONFIG_H__ */