diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-22 22:49:57 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-22 22:49:57 +0200 |
commit | 46d1ed733f99a6058b6117b0fa3c79b6f329caae (patch) | |
tree | cbffe9128f32263ba8a0da5340d6eb3dbde20648 /src/libgamma-error.h | |
parent | library linking and some of gamma-linux-drm (diff) | |
download | libgamma-46d1ed733f99a6058b6117b0fa3c79b6f329caae.tar.gz libgamma-46d1ed733f99a6058b6117b0fa3c79b6f329caae.tar.bz2 libgamma-46d1ed733f99a6058b6117b0fa3c79b6f329caae.tar.xz |
m misc + most of the gamma-linux-drm stuff
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/libgamma-error.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/libgamma-error.h b/src/libgamma-error.h index c3c3c2f..5223207 100644 --- a/src/libgamma-error.h +++ b/src/libgamma-error.h @@ -22,6 +22,20 @@ # error libgamma-error.h should not be included directly, include libgamma.h instead #endif +#include <sys/types.h> + + +/** + * Group that the user needs to be a member of if `LIBGAMMA_DEVICE_REQUIRE_GROUP` is returned + */ +extern gid_t libgamma_group_gid; + +/** + * Group that the user needs to be a member of if `LIBGAMMA_DEVICE_REQUIRE_GROUP` is returned, + * `NULL` if the name of the group `libgamma_group_gid` cannot be determined + */ +extern const char* libgamma_group_name; + /** * The selected adjustment method does not exist @@ -108,6 +122,38 @@ */ #define LIBGAMMA_LIST_CRTCS_FAILED (-16) +/** + * Failed to acquire mode resources from the adjustment method + */ +#define LIBGAMMA_ACQUIRING_MODE_RESOURCES_FAILED (-17) + +/** + * The adjustment method reported that a negative number of partitions exists in the site + */ +#define LIBGAMMA_NEGATIVE_PARTITION_COUNT (-18) + +/** + * The adjustment method reported that a negative number of CRTC:s exists in the partition + */ +#define LIBGAMMA_NEGATIVE_CRTC_COUNT (-19) + +/** + * Device cannot be access becauses of insufficient permissions + */ +#define LIBGAMMA_DEVICE_RESTRICTED (-20) + +/** + * Device cannot be access, reason unknown + */ +#define LIBGAMMA_DEVICE_ACCESS_FAILED (-21) + +/** + * Device cannot be access, membership of the `libgamma_group_gid` + * (named by `libgamma_group_name` (can be `NULL`, if so `errno` may + * have been set to tell why)) is required + */ +#define LIBGAMMA_DEVICE_REQUIRE_GROUP (-22) + #endif |