2008-03-03 19:11:41 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
2007-02-12 12:50:17 +00:00
|
|
|
|
2008-03-03 19:11:41 +00:00
|
|
|
<!--Converted with LaTeX2HTML 2002-2-1 (1.71)
|
2007-02-12 12:50:17 +00:00
|
|
|
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>
|
2009-02-25 19:49:26 +00:00
|
|
|
<TITLE>Engine structure</TITLE>
|
|
|
|
|
<META NAME="description" CONTENT="Engine structure">
|
2007-02-12 12:50:17 +00:00
|
|
|
<META NAME="keywords" CONTENT="clamdoc">
|
|
|
|
|
<META NAME="resource-type" CONTENT="document">
|
|
|
|
|
<META NAME="distribution" CONTENT="global">
|
|
|
|
|
|
2008-03-03 19:11:41 +00:00
|
|
|
<META NAME="Generator" CONTENT="LaTeX2HTML v2002-2-1">
|
2007-02-12 12:50:17 +00:00
|
|
|
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
|
|
|
|
|
|
|
|
|
|
<LINK REL="STYLESHEET" HREF="clamdoc.css">
|
|
|
|
|
|
|
|
|
|
<LINK REL="previous" HREF="node45.html">
|
2009-02-25 19:49:26 +00:00
|
|
|
<LINK REL="up" HREF="node43.html">
|
2007-02-12 12:50:17 +00:00
|
|
|
<LINK REL="next" HREF="node47.html">
|
|
|
|
|
</HEAD>
|
|
|
|
|
|
|
|
|
|
<BODY >
|
2008-03-03 19:11:41 +00:00
|
|
|
|
|
|
|
|
<DIV CLASS="navigation"><!--Navigation Panel-->
|
2009-02-25 19:49:26 +00:00
|
|
|
<A NAME="tex2html805"
|
2007-02-12 12:50:17 +00:00
|
|
|
HREF="node47.html">
|
|
|
|
|
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
|
2009-02-25 19:49:26 +00:00
|
|
|
<A NAME="tex2html801"
|
|
|
|
|
HREF="node43.html">
|
2007-10-08 19:22:34 +00:00
|
|
|
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
|
2009-02-25 19:49:26 +00:00
|
|
|
<A NAME="tex2html797"
|
2007-02-12 12:50:17 +00:00
|
|
|
HREF="node45.html">
|
|
|
|
|
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
|
2009-02-25 19:49:26 +00:00
|
|
|
<A NAME="tex2html803"
|
2007-02-12 12:50:17 +00:00
|
|
|
HREF="node1.html">
|
|
|
|
|
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
|
|
|
|
|
<BR>
|
2009-02-25 19:49:26 +00:00
|
|
|
<B> Next:</B> <A NAME="tex2html806"
|
|
|
|
|
HREF="node47.html">Limits</A>
|
|
|
|
|
<B> Up:</B> <A NAME="tex2html802"
|
|
|
|
|
HREF="node43.html">Initialization</A>
|
|
|
|
|
<B> Previous:</B> <A NAME="tex2html798"
|
|
|
|
|
HREF="node45.html">Error handling</A>
|
|
|
|
|
<B> <A NAME="tex2html804"
|
2007-02-12 12:50:17 +00:00
|
|
|
HREF="node1.html">Contents</A></B>
|
|
|
|
|
<BR>
|
2008-03-03 19:11:41 +00:00
|
|
|
<BR></DIV>
|
2007-02-12 12:50:17 +00:00
|
|
|
<!--End of Navigation Panel-->
|
|
|
|
|
|
2009-02-25 19:49:26 +00:00
|
|
|
<H3><A NAME="SECTION00074300000000000000">
|
|
|
|
|
Engine structure</A>
|
2007-02-12 12:50:17 +00:00
|
|
|
</H3>
|
2009-02-25 19:49:26 +00:00
|
|
|
When all required databases are loaded you should prepare the detection
|
|
|
|
|
engine by calling <code>cl_engine_compile()</code>. In case of failure you
|
|
|
|
|
should still free the memory allocated to the engine with
|
|
|
|
|
<code>cl_engine_free()</code>:
|
|
|
|
|
<PRE>
|
|
|
|
|
int cl_engine_compile(struct cl_engine *engine);
|
|
|
|
|
</PRE>
|
|
|
|
|
In our example:
|
|
|
|
|
<PRE>
|
|
|
|
|
if((ret = cl_engine_compile(engine)) != CL_SUCCESS) {
|
|
|
|
|
printf("cl_engine_compile() error: %s\n", cl_strerror(ret));
|
|
|
|
|
cl_engine_free(engine);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
</PRE>
|
2007-02-12 12:50:17 +00:00
|
|
|
|
|
|
|
|
<P>
|
|
|
|
|
<BR><HR>
|
|
|
|
|
<ADDRESS>
|
|
|
|
|
Tomasz Kojm
|
2009-08-06 22:29:13 +02:00
|
|
|
2009-08-06
|
2007-02-12 12:50:17 +00:00
|
|
|
</ADDRESS>
|
|
|
|
|
</BODY>
|
|
|
|
|
</HTML>
|