libclamav/vba_extract.h
c561d2a3
 /*
1f301ecc
  *  Extract VBA source code for component MS Office Documents
c561d2a3
  *
  *  Copyright (C) 2004 trog@uncon.org
  *
  *  This code is based on the OpenOffice and libgsf sources.
  *                  
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
  *
  *  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
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
 #ifndef __VBA_EXTRACT_H
 #define __VBA_EXTRACT_H
 
1f301ecc
 #include "cltypes.h"
c561d2a3
 
 typedef struct vba_project_tag {
 	int count;
 	char **name;
 	uint32_t *offset;
45ef6256
 	uint32_t *length;	/* for Word 6 macros */
 	unsigned char *key;	/* for Word 6 macros */
c561d2a3
 	char *dir;
 } vba_project_t;
 
8b242bb9
 vba_project_t *vba56_dir_read(const char *dir);
c6b7542f
 unsigned char *vba_decompress(int fd, uint32_t offset, int *size);
8b242bb9
 
d9afa42b
 char *ppt_vba_read(const char *dir);
 
45ef6256
 vba_project_t *wm_dir_read(const char *dir);
 unsigned char *wm_decrypt_macro(int fd, uint32_t offset, uint32_t len,
 					unsigned char key);
 
c561d2a3
 #endif