1 /*
2 	$Id: fnames.h,v 1.2 1999/03/10 22:34:43 crosser Exp $
3 */
4 
5 /*
6 	Copyright (c) 1997,1998 Eugene G. Crosser
7 	Copyright (c) 1998 Bruce D. Lightner (DOS/Windows support)
8 
9 	You may distribute and/or use for any purpose modified or unmodified
10 	copies of this software if you preserve the copyright notice above.
11 
12 	THIS SOFTWARE IS PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY
13 	KIND, EITHER EXPRESSED OR IMPLIED.  IN NO EVENT WILL THE
14 	COPYRIGHT HOLDER BE LIABLE FOR ANY DAMAGES RESULTING FROM THE
15 	USE OF THIS SOFTWARE.
16 */
17 
18 /*
19 	$Log: fnames.h,v $
20 	Revision 1.2  1999/03/10 22:34:43  crosser
21 	clenup
22 
23 	Revision 1.1  1999/03/09 18:36:34  crosser
24 	Initial revision
25 
26 */
27 
28 #ifndef FNAMES_H
29 #define FNAMES_H
30 
31 #define MAXFORMAT 200
32 
33 /* datatype values */
34 #define IMAGE		0
35 #define THUMBNAIL	1
36 #define AUDIO		2
37 
38 void makename(char *fname,int flen,char *filenm,int datatype,
39 			time_t pictime,char *nameformat,int usetimezone);
40 
41 #endif
42