summaryrefslogtreecommitdiff
path: root/src/libopts/autoopts/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libopts/autoopts/options.h')
-rw-r--r--src/libopts/autoopts/options.h108
1 files changed, 54 insertions, 54 deletions
diff --git a/src/libopts/autoopts/options.h b/src/libopts/autoopts/options.h
index fcf7739ca2..92e9be4b0e 100644
--- a/src/libopts/autoopts/options.h
+++ b/src/libopts/autoopts/options.h
@@ -2,7 +2,7 @@
*
* DO NOT EDIT THIS FILE (options.h)
*
- * It has been AutoGen-ed July 14, 2013 at 05:37:12 PM by AutoGen 5.18
+ * It has been AutoGen-ed October 16, 2013 at 01:46:20 PM by AutoGen 5.18.2
* From the definitions funcs.def
* and the template file options_h
*
@@ -101,15 +101,15 @@
* @{
*/
/// autoopts structure version
-#define OPTIONS_STRUCT_VERSION 163840
+#define OPTIONS_STRUCT_VERSION 163841
/// autoopts structure version string
-#define OPTIONS_VERSION_STRING "40:0:15"
+#define OPTIONS_VERSION_STRING "40:1:15"
/// minimum version the autoopts library supports
#define OPTIONS_MINIMUM_VERSION 102400
/// minimum version the autoopts library supports as a string
#define OPTIONS_MIN_VER_STRING "25:0:0"
/// the display version of the autoopts library, as a string
-#define OPTIONS_DOTTED_VERSION "40.0"
+#define OPTIONS_DOTTED_VERSION "40.1"
/// convert a version/release number pair to an integer value
#define OPTIONS_VER_TO_NUM(_v, _r) (((_v) * 4096) + (_r))
/// @}
@@ -201,59 +201,59 @@ typedef uint32_t opt_state_mask_t;
#define OPTST_ARG_TYPE_SHIFT 12
/** bits defined for opt_state_mask_t */
-/** opt_state_mask_t - Set via the "SET_OPT()" macro */
+/** Set via the "SET_OPT()" macro */
#define OPTST_SET 0x0000001U
-/** opt_state_mask_t - Set via an RC/INI file */
+/** Set via an RC/INI file */
#define OPTST_PRESET 0x0000002U
-/** opt_state_mask_t - Set via a command line option */
+/** Set via a command line option */
#define OPTST_DEFINED 0x0000004U
-/** opt_state_mask_t - Reset via command line option */
+/** Reset via command line option */
#define OPTST_RESET 0x0000008U
-/** opt_state_mask_t - selected by equiv'ed option */
+/** selected by equiv'ed option */
#define OPTST_EQUIVALENCE 0x0000010U
-/** opt_state_mask_t - option is in disabled state */
+/** option is in disabled state */
#define OPTST_DISABLED 0x0000020U
-/** opt_state_mask_t - pzOptArg was allocated */
+/** pzOptArg was allocated */
#define OPTST_ALLOC_ARG 0x0000040U
-/** opt_state_mask_t - option cannot be preset */
+/** option cannot be preset */
#define OPTST_NO_INIT 0x0000100U
-/** opt_state_mask_t - opt value (flag) is any digit */
+/** opt value (flag) is any digit */
#define OPTST_NUMBER_OPT 0x0000200U
-/** opt_state_mask_t - opt uses optionStackArg proc */
+/** opt uses optionStackArg proc */
#define OPTST_STACKED 0x0000400U
-/** opt_state_mask_t - option defaults to enabled */
+/** option defaults to enabled */
#define OPTST_INITENABLED 0x0000800U
-/** opt_state_mask_t - bit 1 of arg type enum */
+/** bit 1 of arg type enum */
#define OPTST_ARG_TYPE_1 0x0001000U
-/** opt_state_mask_t - bit 2 of arg type enum */
+/** bit 2 of arg type enum */
#define OPTST_ARG_TYPE_2 0x0002000U
-/** opt_state_mask_t - bit 3 of arg type enum */
+/** bit 3 of arg type enum */
#define OPTST_ARG_TYPE_3 0x0004000U
-/** opt_state_mask_t - bit 4 of arg type enum */
+/** bit 4 of arg type enum */
#define OPTST_ARG_TYPE_4 0x0008000U
-/** opt_state_mask_t - the option arg not required */
+/** the option arg not required */
#define OPTST_ARG_OPTIONAL 0x0010000U
-/** opt_state_mask_t - process opt on first pass */
+/** process opt on first pass */
#define OPTST_IMM 0x0020000U
-/** opt_state_mask_t - process disablement immed. */
+/** process disablement immed. */
#define OPTST_DISABLE_IMM 0x0040000U
-/** opt_state_mask_t - compiled out of program */
+/** compiled out of program */
#define OPTST_OMITTED 0x0080000U
-/** opt_state_mask_t - must be set or pre-set */
+/** must be set or pre-set */
#define OPTST_MUST_SET 0x0100000U
-/** opt_state_mask_t - opt is for doc only */
+/** opt is for doc only */
#define OPTST_DOCUMENT 0x0200000U
-/** opt_state_mask_t - process opt twice - imm + reg */
+/** process opt twice - imm + reg */
#define OPTST_TWICE 0x0400000U
-/** opt_state_mask_t - process disabled option twice */
+/** process disabled option twice */
#define OPTST_DISABLE_TWICE 0x0800000U
-/** opt_state_mask_t - scaled integer value */
+/** scaled integer value */
#define OPTST_SCALED_NUM 0x1000000U
-/** opt_state_mask_t - disable from cmd line */
+/** disable from cmd line */
#define OPTST_NO_COMMAND 0x2000000U
-/** opt_state_mask_t - support is being removed */
+/** support is being removed */
#define OPTST_DEPRECATED 0x4000000U
-/** opt_state_mask_t - alias for other option */
+/** alias for other option */
#define OPTST_ALIAS 0x8000000U
/** bits in SET mask:
@@ -333,50 +333,50 @@ typedef uint32_t opt_state_mask_t;
typedef uint32_t proc_state_mask_t;
/** bits defined for proc_state_mask_t */
-/** proc_state_mask_t - Process long style options */
+/** Process long style options */
#define OPTPROC_LONGOPT 0x000001U
-/** proc_state_mask_t - Process short style "flags" */
+/** Process short style "flags" */
#define OPTPROC_SHORTOPT 0x000002U
-/** proc_state_mask_t - Stop on argument errors */
+/** Stop on argument errors */
#define OPTPROC_ERRSTOP 0x000004U
-/** proc_state_mask_t - Current option is disabled */
+/** Current option is disabled */
#define OPTPROC_DISABLEDOPT 0x000008U
-/** proc_state_mask_t - no options are required */
+/** no options are required */
#define OPTPROC_NO_REQ_OPT 0x000010U
-/** proc_state_mask_t - there is a number option */
+/** there is a number option */
#define OPTPROC_NUM_OPT 0x000020U
-/** proc_state_mask_t - have inits been done? */
+/** have inits been done? */
#define OPTPROC_INITDONE 0x000040U
-/** proc_state_mask_t - any negation options? */
+/** any negation options? */
#define OPTPROC_NEGATIONS 0x000080U
-/** proc_state_mask_t - check environment? */
+/** check environment? */
#define OPTPROC_ENVIRON 0x000100U
-/** proc_state_mask_t - Disallow remaining arguments */
+/** Disallow remaining arguments */
#define OPTPROC_NO_ARGS 0x000200U
-/** proc_state_mask_t - Require args after options */
+/** Require args after options */
#define OPTPROC_ARGS_REQ 0x000400U
-/** proc_state_mask_t - reorder operands after opts */
+/** reorder operands after opts */
#define OPTPROC_REORDER 0x000800U
-/** proc_state_mask_t - emit usage in GNU style */
+/** emit usage in GNU style */
#define OPTPROC_GNUUSAGE 0x001000U
-/** proc_state_mask_t - Translate strings in tOptions */
+/** Translate strings in tOptions */
#define OPTPROC_TRANSLATE 0x002000U
-/** proc_state_mask_t - no usage on usage error */
+/** no usage on usage error */
#define OPTPROC_MISUSE 0x004000U
-/** proc_state_mask_t - immediate options active */
+/** immediate options active */
#define OPTPROC_IMMEDIATE 0x008000U
-/** proc_state_mask_t - suppress for config only */
+/** suppress for config only */
#define OPTPROC_NXLAT_OPT_CFG 0x010000U
-/** proc_state_mask_t - suppress xlation always */
+/** suppress xlation always */
#define OPTPROC_NXLAT_OPT 0x020000U
-/** proc_state_mask_t - vendor options active */
+/** vendor options active */
#define OPTPROC_VENDOR_OPT 0x040000U
-/** proc_state_mask_t - opt processing in preset state */
+/** opt processing in preset state */
#define OPTPROC_PRESETTING 0x080000U
-/** proc_state_mask_t - Ignore pzFullUsage, compute usage text */
+/** Ignore pzFullUsage, compute usage text */
#define OPTPROC_COMPUTE 0x100000U
-/** proc_state_mask_t - Program outputs digested option state for shell scripts.
-Usage text always written to stderr */
+/** Program outputs digested option state for shell scripts. Usage text
+ * always written to stderr */
#define OPTPROC_SHELL_OUTPUT 0x200000U
/** bits in NO_XLAT mask: