1 /***************************************************************************
2 
3     file                 : ac3d.h
4     created              : Wed May 29 22:15:37 CEST 2002
5     copyright            : (C) 2001 by Eric Espi�
6     email                : Eric.Espie@torcs.org
7     version              : $Id: ac3d.h,v 1.1.6.1 2008/12/31 03:53:57 berniw Exp $
8 
9  ***************************************************************************/
10 
11 /***************************************************************************
12  *                                                                         *
13  *   This program is free software; you can redistribute it and/or modify  *
14  *   it under the terms of the GNU General Public License as published by  *
15  *   the Free Software Foundation; either version 2 of the License, or     *
16  *   (at your option) any later version.                                   *
17  *                                                                         *
18  ***************************************************************************/
19 
20 /** @file
21 
22     @author	<a href=mailto:torcs@free.fr>Eric Espie</a>
23     @version	$Id: ac3d.h,v 1.1.6.1 2008/12/31 03:53:57 berniw Exp $
24 */
25 
26 #ifndef _AC3D_H_
27 #define _AC3D_H_
28 
29 extern FILE *Ac3dOpen(char *filename, int nbObjects);
30 extern int Ac3dGroup(FILE *save_fd, const char *name, int nbObjects);
31 extern void Ac3dClose(FILE *save_fd);
32 
33 #endif /* _AC3D_H_ */
34 
35 
36 
37