libclamav/vba_extract.h
47bbbc56
 /*
f893c0f3
  *  Extract VBA source code for component MS Office Documents
47bbbc56
  *
e1cbc270
  *  Copyright (C) 2013-2019 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
  *  Copyright (C) 2007-2013 Sourcefire, Inc.
2023340a
  *
  *  Authors: Trog, Nigel Horne
9fe789f8
  *
47bbbc56
  *  This program is free software; you can redistribute it and/or modify
2023340a
  *  it under the terms of the GNU General Public License version 2 as
  *  published by the Free Software Foundation.
47bbbc56
  *
  *  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.
47bbbc56
  */
 
 #ifndef __VBA_EXTRACT_H
 #define __VBA_EXTRACT_H
 
72ce4b70
 #include "others.h"
e030ba4f
 #include "clamav-types.h"
937ade08
 #include "uniq.h"
47bbbc56
 
 typedef struct vba_project_tag {
288057e9
     char **name;
     uint32_t *colls;
     uint32_t *offset;
     uint32_t *length;   /* for Word 6 macros */
     unsigned char *key; /* for Word 6 macros */
     char *dir;
     struct uniq *U;
     int count;
47bbbc56
 } vba_project_t;
 
288057e9
 vba_project_t *cli_vba_readdir(const char *dir, struct uniq *U, uint32_t which);
 vba_project_t *cli_wm_readdir(int fd);
49df8ea7
 void cli_free_vba_project(vba_project_t *vba_project);
 
6c03dc5d
 unsigned char *cli_vba_inflate(int fd, off_t offset, size_t *size);
288057e9
 int cli_scan_ole10(int fd, cli_ctx *ctx);
 char *cli_ppt_vba_read(int fd, cli_ctx *ctx);
 unsigned char *cli_wm_decrypt_macro(int fd, off_t offset, uint32_t len,
                                     unsigned char key);
47bbbc56
 #endif