Commit 9ce64c13 authored by Lev Walkin's avatar Lev Walkin

API reference

parent 933b950a
No preview for this file type
...@@ -8,6 +8,6 @@ regen: ...@@ -8,6 +8,6 @@ regen:
$(XELATEX) $(XELATEX_FLAGS) -no-pdf $(TEXSRC) $(XELATEX) $(XELATEX_FLAGS) -no-pdf $(TEXSRC)
$(XELATEX) $(XELATEX_FLAGS) $(TEXSRC) $(XELATEX) $(XELATEX_FLAGS) $(TEXSRC)
EXTRA_DIST = $(srcdir)/*.tex EXTRA_DIST = $(srcdir)/*.tex $(srcdir)/*.inc
CLEANFILES = *.*~ *.aux *.dvi *.log *.out *.toc CLEANFILES = *.*~ *.aux *.dvi *.log *.out *.toc
This diff is collapsed.
Upon unsuccessful termination, the \code{*struct_ptr_ptr}
may contain partially decoded data. This data may be useful for debugging
(such as by using \code{asn_fprint()}).
Don't forget to discard the unused partially decoded data by calling
\code{ASN_STRUCT_FREE()} or \code{ASN_STRUCT_RESET()}.
The return value is returned in a compound structure: The return value is returned in a compound structure:
\begin{codesample} \begin{codesample}
typedef struct { typedef struct {
...@@ -12,11 +19,11 @@ typedef struct { ...@@ -12,11 +19,11 @@ typedef struct {
The \code{.code} member specifies the decoding outcome. The \code{.code} member specifies the decoding outcome.
\begin{description}[labelindent=\parindent] \begin{tabular}[h!]{ll}
\item[RC\_OK] Decoded successfully and completely \texttt{RC\_OK} & Decoded successfully and completely \\
\item[RC\_WMORE] More data expected, call again \texttt{RC\_WMORE} & More data expected, call again \\
\item[RC\_FAIL] Failed for good \texttt{RC\_FAIL} & Failed for good
\end{description} \end{tabular}
The \code{.consumed} member specifies the amount of \code{buffer} data The \code{.consumed} member specifies the amount of \code{buffer} data
that was used during parsing, irrespectively of the \code{.code}. that was used during parsing, irrespectively of the \code{.code}.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment