clamscan/manager.h
e3aaff8e
 /*
48b7b4a7
  *  Copyright (C) 2002, 2003 Tomasz Kojm <tkojm@clamav.net>
e3aaff8e
  *
  *  This program is free software; you can redistribute it and/or modify
bb34cb31
  *  it under the terms of the GNU General Public License version 2 as
  *  published by the Free Software Foundation.
e3aaff8e
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
48b7b4a7
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
e3aaff8e
  */
 
 #ifndef __MANAGER_H
 #define __MANAGER_H
 
34f71e0e
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
 #ifdef HAVE_PWD_H
e3aaff8e
 #include <pwd.h>
34f71e0e
 #endif
e3aaff8e
 
7a2997f1
 #include "libclamav/clamav.h"
 #include "shared/options.h"
e3aaff8e
 
7a2997f1
 int scanmanager(const struct optstruct *opt);
e3aaff8e
 
7a2997f1
 int scanfile(const char *filename, struct cl_engine *engine, const struct passwd *user, const struct optstruct *opt, const struct cl_limits *limits, unsigned int options);
e3aaff8e
 
 #endif