diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-23 18:48:33 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-23 18:48:33 +0200 |
commit | 1ce2b99c24feccc0edfe55ca3cfc82c8f044622e (patch) | |
tree | f3efc567df4185b25de91bc6a506c4ca0141a4d4 /src/libgamma-error.h | |
parent | gamma-x-randr: init site (diff) | |
download | libgamma-1ce2b99c24feccc0edfe55ca3cfc82c8f044622e.tar.gz libgamma-1ce2b99c24feccc0edfe55ca3cfc82c8f044622e.tar.bz2 libgamma-1ce2b99c24feccc0edfe55ca3cfc82c8f044622e.tar.xz |
gamma-x-randr: partition init
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/libgamma-error.h')
-rw-r--r-- | src/libgamma-error.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/libgamma-error.h b/src/libgamma-error.h index 6e3b102..87eb4ac 100644 --- a/src/libgamma-error.h +++ b/src/libgamma-error.h @@ -237,6 +237,16 @@ extern const char* libgamma_group_name; */ #define LIBGAMMA_PROTOCOL_VERSION_NOT_SUPPORTED (-38) +/** + * The adjustment method failed to list available partitions, reason unknown + */ +#define LIBGAMMA_LIST_PARTITIONS_FAILED (-39) + +/** + * Partition exists by index, but the partition at that index does not exist + */ +#define LIBGAMMA_NULL_PARTITION (-40) + /** @@ -244,7 +254,7 @@ extern const char* libgamma_group_name; * If this is lower than the number your program thinks it * should be sould update your program for new errors. */ -#define LIBGAMMA_ERROR_MIN (-38) +#define LIBGAMMA_ERROR_MIN (-40) |