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.
15 lines
461 B
15 lines
461 B
//
|
|
// libfreshclam.h
|
|
// freshclam
|
|
//
|
|
// Created by msachedi on 2/3/14.
|
|
// Copyright (c) 2014 Sourcefire, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef freshclam_libfreshclam_h
|
|
#define freshclam_libfreshclam_h
|
|
|
|
int download_with_opts(struct optstruct *opts, const char* db_path, const char* db_owner);
|
|
struct optstruct *optadditem(const char *name, const char *arg, int verbose, int toolmask, int ignore,
|
|
struct optstruct *oldopts);
|
|
#endif
|
|
|