summaryrefslogtreecommitdiff
path: root/ucmm/ucmm.h
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-12-01 10:32:14 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-12-01 10:32:14 +0100
commit4097e27114d227692d53c5d28487e12a3833cd24 (patch)
treed5c2a62c4db97de94f92150340612c64d3997669 /ucmm/ucmm.h
parentf8a0a4e1c775a90c313cb83201eec4cea4e9a7da (diff)
parent5514d94483c98e3320b202b1bb882023a7d12027 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'ucmm/ucmm.h')
-rwxr-xr-x[-rw-r--r--]ucmm/ucmm.h11
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);