summaryrefslogtreecommitdiff
path: root/ucmm/ucmm.h
diff options
context:
space:
mode:
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);