libclamav/vba_extract.h
47bbbc56
 /*
f893c0f3
  *  Extract VBA source code for component MS Office Documents
47bbbc56
  *
2023340a
  *  Copyright (C) 2007-2008 Sourcefire, Inc.
  *
  *  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"
f893c0f3
 #include "cltypes.h"
937ade08
 #include "uniq.h"
47bbbc56
 
 typedef struct vba_project_tag {
937ade08
 	char **name;
72ce4b70
 	uint32_t *colls;
47bbbc56
 	uint32_t *offset;
7b9aed8c
 	uint32_t *length;	/* for Word 6 macros */
 	unsigned char *key;	/* for Word 6 macros */
47bbbc56
 	char *dir;
72ce4b70
 	struct uniq *U;
b5231f5f
 	int count;
47bbbc56
 } vba_project_t;
 
72ce4b70
 vba_project_t	*cli_vba_readdir(const char *dir, struct uniq *U, uint32_t which);
 vba_project_t	*cli_wm_readdir(int fd);
11d24f8a
 unsigned char	*cli_vba_inflate(int fd, off_t offset, int *size);
72ce4b70
 int	cli_scan_ole10(int fd, cli_ctx *ctx);
33068e09
 char	*cli_ppt_vba_read(int fd, cli_ctx *ctx);
11d24f8a
 unsigned char	*cli_wm_decrypt_macro(int fd, off_t offset, uint32_t len,
7b9aed8c
 					unsigned char key);
 
47bbbc56
 #endif