~ubuntu-branches/ubuntu/trusty/nvidia-settings/trusty

« back to all changes in this revision

Viewing changes to src/command-line.h

  • Committer: Package Import Robot
  • Author(s): Alberto Milone
  • Date: 2011-11-14 17:05:48 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20111114170548-1j4nd0x3w0oxdkr2
Tags: 285.05.09-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#define CONFIG_FILE_OPTION 1
32
32
 
33
33
 
34
 
#define VERBOSITY_ERROR    0 /* errors only */
35
 
#define VERBOSITY_WARNING  1 /* errors and warnings */
36
 
#define VERBOSITY_ALL      2 /* errors, warnings and other info */
 
34
#define VERBOSITY_NONE     0 /* nothing */
 
35
#define VERBOSITY_ERROR    1 /* errors only */
 
36
#define VERBOSITY_WARNING  2 /* errors and warnings */
 
37
#define VERBOSITY_ALL      3 /* errors, warnings and other info */
37
38
 
38
39
#define VERBOSITY_DEFAULT  VERBOSITY_ERROR
39
40