diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-12-03 20:38:41 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-12-03 20:38:41 +0100 |
commit | ba627dd9ecb578e9852c7b9cce67ec63199d1acf (patch) | |
tree | 27c4258311ca8c8ed7ff67a8a0bc7280e8fcae79 /ucmm/ucmm.h | |
parent | 69aec3b712232e93600ecd741269fed1f90b412a (diff) | |
parent | 3abb40d43649adb3807180692d8579c405524675 (diff) |
Merge branch 'release/2.0.0+repack-1'2.0.0+repack-1
Diffstat (limited to 'ucmm/ucmm.h')
-rwxr-xr-x[-rw-r--r--] | ucmm/ucmm.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ucmm/ucmm.h b/ucmm/ucmm.h index fc08ca1..564af3e 100644..100755 --- a/ucmm/ucmm.h +++ b/ucmm/ucmm.h @@ -68,17 +68,13 @@ ucmm_error ucmm_install_monitor_profile( /* Un-install a profile for a given monitor. */ /* Either EDID or display_name may be NULL, but not both. */ -/* The monitor is left with no profile association. If a profile */ -/* name is provided and matches the one that was associated with */ -/* the monitor, and has no other association, then it will be deleted */ -/* from the data directory. */ +/* The monitor is left with no profile association. */ /* Return an error code */ ucmm_error ucmm_uninstall_monitor_profile( ucmm_scope scope, /* Scope of instalation */ unsigned char *edid, /* Primary device identifier, NULL if none. */ int edid_len, /* Length of edid data */ - char *display_name, /* Fall back device association, */ - char *profile /* Base name of profile to be deleted, NULL if not to be deleted. */ + char *display_name /* Fall back device association, */ ); /* Get an associated monitor profile. */ @@ -92,6 +88,9 @@ ucmm_error ucmm_get_monitor_profile( char **profile /* Return path to profile. free() afterwards. */ ); +/* Return an ASCII error message string interpretation of scope enum */ +char *ucmm_scope_string(ucmm_scope scope); + /* Return an ASCII error message string interpretation of an error number */ char *ucmm_error_string(ucmm_error erno); |