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;
 	char *dir;
 } vba_project_t;
 
8b242bb9
 vba_project_t *vba56_dir_read(const char *dir);
 unsigned char *vba_decompress(int fd, uint32_t offset);
 
c561d2a3
 #endif