aboutsummaryrefslogtreecommitdiffstats
path: root/doc/man/libcoopgamma_crtc_info_unmarshal.3
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-07-20 15:55:07 +0200
committerMattias Andrée <maandree@kth.se>2016-07-20 15:55:07 +0200
commit9236774452fb9f7ac0bd01ce8919f53f4ef45a86 (patch)
treecb250dd9b668c747669c22671ceb3080d9c68f95 /doc/man/libcoopgamma_crtc_info_unmarshal.3
parentman style fix (diff)
downloadlibcoopgamma-9236774452fb9f7ac0bd01ce8919f53f4ef45a86.tar.gz
libcoopgamma-9236774452fb9f7ac0bd01ce8919f53f4ef45a86.tar.bz2
libcoopgamma-9236774452fb9f7ac0bd01ce8919f53f4ef45a86.tar.xz
m + Add libcoopgamma_*_unmarshal.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'doc/man/libcoopgamma_crtc_info_unmarshal.3')
-rw-r--r--doc/man/libcoopgamma_crtc_info_unmarshal.383
1 files changed, 83 insertions, 0 deletions
diff --git a/doc/man/libcoopgamma_crtc_info_unmarshal.3 b/doc/man/libcoopgamma_crtc_info_unmarshal.3
new file mode 100644
index 0000000..964b3b0
--- /dev/null
+++ b/doc/man/libcoopgamma_crtc_info_unmarshal.3
@@ -0,0 +1,83 @@
+.TH LIBCOOPGAMMA_CRTC_INFO_UNMARSHAL 3 LIBCOOPGAMMA
+.SH "NAME"
+libcoopgamma_crtc_info_unmarshal - Unmarshal a libcoopgamma_crtc_info_t
+.SH "SYNOPSIS"
+.nf
+#include <libcoopgamma.h>
+
+int libcoopgamma_crtc_info_unmarshal(libcoopgamma_crtc_info_t *restrict \fIthis\fP,
+ void *restrict \fIbuffer\fP, size_t *restrict \fIn\fP);
+.fi
+.P
+Link with
+.IR -lcoopgamma .
+.SH "DESCRIPTION"
+The
+.BR libcoopgamma_crtc_info_unmarshal ()
+function unmarshals
+.I this
+from a
+.I buffer .
+The number of read bytes from
+.I buffer
+is stored in
+.I *n
+on success.
+.P
+None if the parameters may be
+.IR NULL .
+.I this
+does not have to be initialised.
+.P
+On failure,
+.I this
+should be deinitialised using
+.BR libcoopgamma_crtc_info_destroy (3).
+.P
+Undefined behaviour is invoked if the
+beginning of
+.I buffer
+does not contain data stored by
+.BR libcoopgamma_crtc_info_marshal (3).
+.SH "RETURN VALUES"
+The
+.BR libcoopgamma_crtc_info_unmarshal ()
+function returns one of the following
+values:
+.TP
+.IR LIBCOOPGAMMA_SUCCESS " (= 0)"
+The function was successful.
+.TP
+.IR LIBCOOPGAMMA_INCOMPATIBLE_DOWNGRADE " (> 0)"
+The data in
+.I buffer
+was stored by an earlier version of
+.BR libcoopgamma (7)
+that is no longer supported.
+.TP
+.IR LIBCOOPGAMMA_INCOMPATIBLE_UPGRADE " (> 0)"
+The data in
+.I buffer
+was stored by a newer version of
+.BR libcoopgamma (7)
+that stores the data in an incompatible format.
+.TP
+.IR LIBCOOPGAMMA_ERRNO_SET "(= -1)"
+An other error was encountered.
+.I errno
+has been set appropriately.
+.SH "ERROR"
+No error is specified for the
+.BR libcoopgamma_crtc_info_marshal ()
+function.
+.SH "SEE ALSO"
+.BR libcoopgamma_crtc_info_destroy (3),
+.BR libcoopgamma_crtc_info_marshal (3),
+.BR libcoopgamma_ramps_unmarshal (3),
+.BR libcoopgamma_filter_unmarshal (3),
+.BR libcoopgamma_filter_query_unmarshal (3),
+.BR libcoopgamma_queried_filter_unmarshal (3),
+.BR libcoopgamma_filter_table_unmarshal (3),
+.BR libcoopgamma_error_unmarshal (3),
+.BR libcoopgamma_context_unmarshal (3),
+.BR libcoopgamma_async_context_unmarshal (3)