mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.7 KiB
82 lines
2.7 KiB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
|
<!--Converted with LaTeX2HTML 2008 (1.71)
|
|
original version by: Nikos Drakos, CBLU, University of Leeds
|
|
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
|
|
* with significant contributions from:
|
|
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Initialization</TITLE>
|
|
<META NAME="description" CONTENT="Initialization">
|
|
<META NAME="keywords" CONTENT="clamdoc">
|
|
<META NAME="resource-type" CONTENT="document">
|
|
<META NAME="distribution" CONTENT="global">
|
|
|
|
<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
|
|
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
|
|
|
|
<LINK REL="STYLESHEET" HREF="clamdoc.css">
|
|
|
|
<LINK REL="next" HREF="node46.html">
|
|
<LINK REL="previous" HREF="node44.html">
|
|
<LINK REL="up" HREF="node43.html">
|
|
<LINK REL="next" HREF="node46.html">
|
|
</HEAD>
|
|
|
|
<BODY >
|
|
|
|
<DIV CLASS="navigation"><!--Navigation Panel-->
|
|
<A NAME="tex2html809"
|
|
HREF="node46.html">
|
|
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
|
|
<A NAME="tex2html805"
|
|
HREF="node43.html">
|
|
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
|
|
<A NAME="tex2html799"
|
|
HREF="node44.html">
|
|
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
|
|
<A NAME="tex2html807"
|
|
HREF="node1.html">
|
|
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
|
|
<BR>
|
|
<B> Next:</B> <A NAME="tex2html810"
|
|
HREF="node46.html">Database loading</A>
|
|
<B> Up:</B> <A NAME="tex2html806"
|
|
HREF="node43.html">API</A>
|
|
<B> Previous:</B> <A NAME="tex2html800"
|
|
HREF="node44.html">Header file</A>
|
|
<B> <A NAME="tex2html808"
|
|
HREF="node1.html">Contents</A></B>
|
|
<BR>
|
|
<BR></DIV>
|
|
<!--End of Navigation Panel-->
|
|
|
|
<H3><A NAME="SECTION00073200000000000000">
|
|
Initialization</A>
|
|
</H3>
|
|
Before using libclamav, you should call <code>cl_init()</code> to initialize
|
|
it. When it's done, you're ready to create a new scan engine by calling
|
|
<code>cl_engine_new()</code>. To free resources allocated by the engine use
|
|
<code>cl_engine_free()</code>. Function prototypes:
|
|
<PRE>
|
|
int cl_init(unsigned int options);
|
|
struct cl_engine *cl_engine_new(void);
|
|
int cl_engine_free(struct cl_engine *engine);
|
|
</PRE>
|
|
At this time, <code>cl_init()</code> only supports the <code>CL_INIT_DEFAULT</code> option
|
|
which intializes libclamav with the default settings.
|
|
|
|
<code>cl_init()</code> and <code>cl_engine_free()</code> return <code>CL_SUCCESS</code>
|
|
on success or another code on error. <code>cl_engine_new()</code> return
|
|
a pointer or NULL if there's not enough memory to allocate a new
|
|
engine structure.
|
|
|
|
<P>
|
|
<BR><HR>
|
|
<ADDRESS>
|
|
Tomasz Kojm
|
|
2010-08-12
|
|
</ADDRESS>
|
|
</BODY>
|
|
</HTML>
|
|
|