diff options
Diffstat (limited to 'src/lib/libgamma-error.h')
-rw-r--r-- | src/lib/libgamma-error.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/libgamma-error.h b/src/lib/libgamma-error.h index d4dddbd..d0b9e61 100644 --- a/src/lib/libgamma-error.h +++ b/src/lib/libgamma-error.h @@ -1,6 +1,6 @@ /** * libgamma -- Display server abstraction layer for gamma ramp adjustments - * Copyright (C) 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright (C) 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -333,6 +333,12 @@ extern const char* libgamma_group_name; */ #define LIBGAMMA_OUTPUT_INFORMATION_QUERY_FAILED (-46) +/** + * Gamma ramps are not supported. + * (Only returned in debug mode.) + */ +#define LIBGAMMA_GAMMA_RAMPS_NOT_SUPPORTED (-47) + /** @@ -341,7 +347,7 @@ extern const char* libgamma_group_name; * number your program thinks it should be sould * update your program for new errors. */ -#define LIBGAMMA_ERROR_MIN (-46) +#define LIBGAMMA_ERROR_MIN (-47) |