diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-23 17:15:16 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-23 17:15:16 +0200 |
commit | eb197ddb00e9f444f50069b2376a537331bb7473 (patch) | |
tree | dabf22455a0378403042d3be2ec248bc39d2fcdc /src/libgamma-error.h | |
parent | parse edid (diff) | |
download | libgamma-eb197ddb00e9f444f50069b2376a537331bb7473.tar.gz libgamma-eb197ddb00e9f444f50069b2376a537331bb7473.tar.bz2 libgamma-eb197ddb00e9f444f50069b2376a537331bb7473.tar.xz |
implement gamma-x-vidmode
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/libgamma-error.h')
-rw-r--r-- | src/libgamma-error.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/libgamma-error.h b/src/libgamma-error.h index c4da13c..5cdfc65 100644 --- a/src/libgamma-error.h +++ b/src/libgamma-error.h @@ -212,6 +212,35 @@ extern const char* libgamma_group_name; */ #define LIBGAMMA_GAMMA_NOT_SPECIFIED_AND_EDID_CHECKSUM_ERROR (-33) +/** + * Failed to query the gamma ramps size from the adjustment method, reason unknown + */ +#define LIBGAMMA_GAMMA_RAMPS_SIZE_QUERY_FAILED (-34) + +/** + * The selected partition could not be opened, reason unknown + */ +#define LIBGAMMA_OPEN_PARTITION_FAILED (-35) + +/** + * The selected site could not be opened, reason unknown + */ +#define LIBGAMMA_OPEN_SITE_FAILED (-36) + +/** + * Failed to query the adjustment method for its protocol version, reason unknown + */ +#define LIBGAMMA_PROTOCOL_VERSION_QUERY_FAILED (-37) + + + +/** + * The number of the libgamma error with the lowest number. + * If this is lower than the number your program thinks it + * should be sould update your program for new errors. + */ +#define LIBGAMMA_ERROR_MIN (-37) + #endif |